Canon scaled employee advocacy across 20 countries with one simple platform

Canon uses Apostle to boost employee engagement and simplify social media advocacy. With the easy-to-use platform, employees confidently share content, increasing interaction and visibility across 20 countries.

20
COUNTRIES ACTIVATED
From shy
TO CONFIDENT EMPLOYEES
More
VISIBILITY PER EURO THAN PAID ADS
“Because we started using Apostle, we saw a huge increase in employee interaction and engagement."
Walter Young

Marketing Program Manager at Canon Europe

About Canon Production Printing

Canon Production Printing is a leading innovator of printing and workflow management products and services.

Problem

“The reason to start working with Apostle came from a curiosity to find ways to increase employee engagement within Canon,” said Walter Young, Marketing Program Manager at Canon Europe. Canon often works with experienced sales people who are not as comfortable with social media. While resources were readily available for download and post to social media, little effort was made. After a small internal investigation, it turned out that many people did not yet know exactly how social media channels worked and were afraid to express themselves there. In short, there was a demand for a simple solution, so that employees could share social media posts via their smartphone, at any time, with a few clicks of a button. “We found that simple solution with Apostle. We can easily prepare all posts with photos, text, and CTAs in them. The texts can also already be translated into the desired language. In addition, the CTAs can also redirect to the right websites in the right countries. All the employees have to do is click 3 times and the message is on their page.”

Approach

Apostle’s easy-to-use platform ensures the desired, higher employee involvement in the organization. In the beginning, Canon offered all kinds of webinars to explain to people how to create an account, how to get started with the platform and how to create posts. All recordings were saved so that employees could re-watch or view them later. Already after the first webinars, the feedback came that these training courses were unnecessary, because employees found the platform so easy to use. From a user perspective, therefore, a huge success.

Canon's approach is successful: the platform allows them to be active in twenty countries, place content in various languages and are actively involved with employee advocacy on a large scale. Scheduling everything with just one platform: Apostle. In order to further optimize the reach in different countries, Canon wants to focus on intercultural differences and keep putting out authentic content together with their employees on social media.

 

Results

“Because we started using Apostle, we saw a huge increase in employee interaction and engagement. People who were 'social media shy' beforehand realized that it was not scary and difficult at all. Especially because we do all the work for them”, Walter says with a wink. “A great result. The involvement of these employees was the main reason for using Apostle and therefore also our first measurable success.”

“It is difficult for us to check whether the social media post placed via Apostle actually leads to the purchase of a product. Our sales cycles run from six months to two years, in that timeframe there are a lot of different influences. The best alternative to look at the results of this process is paid social. If you look at the cost of paid social and how much we spend on Apostle, I personally think we get more visibility for every euro we spend on employee advocacy, compared to every euro we spend on paid social. I do not mean we have stopped with paid social, we still do, but I am comparing the advantages now especially in that area. Another advantage worth mentioning: with employee advocacy we really build a valuable relationship with the customer!”

Table of contents
Share this story

Additional Customer Success Stories

Contact Our Sales Team

Whether you have questions about our plans, pricing, or solutions, or just want to explore how we can work together, our sales team is here to help. Reach out today by filling in the form below and discover how we can support your goals!

Crowe Foederer

''Great tool that takes us to the next level. Apostle helps us to increase our local brand awareness, by getting more colleagues involved in sharing.''

Roxanne Daris
Van der Velden

"We found the Apostle experiment to be very easy to start with. After the kick-off, we could start right away, and we're already seeing positive results."

Donna Visser
PIDZ

"The results speak for themselves: in a month, we gained 3.6 times more organic reach than our LinkedIn page - a great addition to our channel mix!"

Carlijne Brouwers

“Because we started using Apostle, we saw a huge increase in employee interaction and engagement." - Walter Young, Marketing Program Manager at Canon Europe.

About Canon Production Printing

Canon Production Printing is a leading innovator of printing and workflow management products and services.

Problem

“The reason to start working with Apostle came from a curiosity to find ways to increase employee engagement within Canon,” said Walter Young, Marketing Program Manager at Canon Europe. Canon often works with experienced sales people who are not as comfortable with social media. While resources were readily available for download and post to social media, little effort was made. After a small internal investigation, it turned out that many people did not yet know exactly how social media channels worked and were afraid to express themselves there. In short, there was a demand for a simple solution, so that employees could share social media posts via their smartphone, at any time, with a few clicks of a button. “We found that simple solution with Apostle. We can easily prepare all posts with photos, text, and CTAs in them. The texts can also already be translated into the desired language. In addition, the CTAs can also redirect to the right websites in the right countries. All the employees have to do is click 3 times and the message is on their page.”

Approach

Apostle’s easy-to-use platform ensures the desired, higher employee involvement in the organization. In the beginning, Canon offered all kinds of webinars to explain to people how to create an account, how to get started with the platform and how to create posts. All recordings were saved so that employees could re-watch or view them later. Already after the first webinars, the feedback came that these training courses were unnecessary, because employees found the platform so easy to use. From a user perspective, therefore, a huge success.

Canon's approach is successful: the platform allows them to be active in twenty countries, place content in various languages and are actively involved with employee advocacy on a large scale. Scheduling everything with just one platform: Apostle. In order to further optimize the reach in different countries, Canon wants to focus on intercultural differences and keep putting out authentic content together with their employees on social media.

 

Results

“Because we started using Apostle, we saw a huge increase in employee interaction and engagement. People who were 'social media shy' beforehand realized that it was not scary and difficult at all. Especially because we do all the work for them”, Walter says with a wink. “A great result. The involvement of these employees was the main reason for using Apostle and therefore also our first measurable success.”

“It is difficult for us to check whether the social media post placed via Apostle actually leads to the purchase of a product. Our sales cycles run from six months to two years, in that timeframe there are a lot of different influences. The best alternative to look at the results of this process is paid social. If you look at the cost of paid social and how much we spend on Apostle, I personally think we get more visibility for every euro we spend on employee advocacy, compared to every euro we spend on paid social. I do not mean we have stopped with paid social, we still do, but I am comparing the advantages now especially in that area. Another advantage worth mentioning: with employee advocacy we really build a valuable relationship with the customer!”

$(document).ready(function() { // Only execute if the URL contains the Dutch slug '/nl' // if(window.location.href.indexOf('/nl') > -1) { // Check if the URL does not contain the word 'webinars' if(window.location.href.indexOf('webinars') === -1) { const modal = $('#webinar-modal'); function webModal(){ hasSeenBanner = getCookie("hasSeenWebinarBanner"); if (hasSeenBanner == "") { modal.addClass('active'); } } function closeModal(){ setCookie('hasSeenWebinarBanner', '1', '20'); modal.removeClass('active'); } $('#close-webinar-modal').click(function() { closeModal(); }); setTimeout(() => { webModal(); }, 15000); // Below you find three function for setting a cookie, getting a cookie and eventually checking whether the cookie exists function setCookie(cname, cvalue, exdays) { const d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); let expires = "expires="+ d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function getCookie(cname) { let name = cname + "="; let decodedCookie = decodeURIComponent(document.cookie); let ca = decodedCookie.split(';'); for(let i = 0; i
Capterra rating 4.3
© Apostle Social 2025
Privacy Policy
Terms and conditions
GDPR
KVK: 57449104
VAT: NL852584362B01