Global dial-in in meeting email templates in Zoom
There will be a global dial-in number included in the meeting and webinar invitation emails. By editing the email template in Freemarker format, account owners and admins have the option to customize how the meeting or webinar numbers appear in the invitation emails. To adjust the number of numbers displayed within the meeting or webinar email branding, there are a few common variables that are used within the branding of the meeting or webinar emails.
Note: Multiple languages are supported by some dial-in numbers. If you dial one of these numbers, the automated receptionist will ask you for the meeting ID and other details before asking you if you would like the conversation to be conducted in your preferred language. Due to this requirement, one-tap mobile links will not be able to work properly since a choice has to be made before all of the other details are accepted, so the dial-in numbers will not always work.
The following topics are covered in this article:
- Customizing branding email templates for meetings
- Email templates
- Displaying default numbers
- Displaying all selected countries for one-tap
- Displaying only the first country for one-tap
- Manually adding one-tap mobile links for specific numbers
Contents
- 1 Prerequisites for customizing global dial-in countries in meeting email templates
- 2 Customizing branding email templates for meetings
- 3 Email templates
- 3.1 Displaying default numbers
- 3.2 Displaying all selected countries for one-tap
- 3.3 Displaying only the first country for one-tap
- 3.4 Manually adding one-tap mobile links for specific numbers
- 3.5 Frequently Asked Questions
- 3.6 How do I customize my Zoom invitation email?
- 3.7 How do I schedule a Zoom meeting email template?
- 3.8 How do you write a Zoom meeting invitation?
- 3.9 How do I edit the Zoom meeting template?
- 3.10 Can you create a poll template in Zoom?
- 3.11 How do I save a webinar template in Zoom?
- 3.12 Can I import a poll into a zoom meeting?
- 3.13 How do you make a Zoom poll before a meeting?
- 3.14 Can I create a Zoom poll during a meeting?
- 3.15 What’s the difference between a Zoom webinar and a Zoom meeting?
- 3.16 Related articles
Prerequisites for customizing global dial-in countries in meeting email templates
- The business plan should be at least 5 pages in length
- It is important to have a vanity URL that has been approved
- The account owner or an administrator should have the following privileges:
Customizing branding email templates for meetings
- The Zoom web portal can be accessed by logging in to the account.
- Click the Advanced tab and then click the Branding tab in the navigation menu.
- You will find the Meeting section at the bottom of the page.
- You can edit the template by clicking on Edit next to Meeting Invite Email or Meeting Schedule Email to make the necessary changes.
The following email templates can be used to create an email to your contacts.
Email templates
Displaying default numbers
- There are a number of ways to add the default numbers to the invitation, one of which is listed below. The template includes a default option as part of the default options section.
Or Telephone: Dial(for higher quality, dial a number based on your current location):<#assign n = 0><#list pickedNumbers as pickedNumber><#if (n == 0 || (n > 0 && pickedNumber.country != pickedNumbers[n - 1].country))>${'\r\n '}${pickedNumber.countryName!'US'}: </#if><#if (n > 0 && pickedNumber.country == pickedNumbers[n - 1].country)> or </#if>${pickedNumber.displayNumber} <#if pickedNumber.free>(Toll-free)</#if><#assign n = n + 1></#list>
In the case of the United States, Canada, and the United Kingdom, you would see the following results if you selected these three countries:
Displaying all selected countries for one-tap
You can use the following code to add the picked numbers to one-tap once they have been selected. In order to add all selected countries for one-tap calling, please follow the instructions below.
Or iPhone one-tap :<#assign n = 0><#list pickedNumbers as pickedNumber><#if (n == 0 || (n > 0 && pickedNumber.country != pickedNumbers[n - 1].country))>${'\r\n '}${pickedNumber.countryName!'US'}: </#if><#if (n > 0 && pickedNumber.country == pickedNumbers[n - 1].country)> or </#if>${pickedNumber.displayNumber?replace(' ','')?replace('(0)','')},,${number?c}# <#if pickedNumber.free>(Toll-free)</#if><#assign n = n + 1></#list>
For example, if you had the US, Canada and the United Kingdom selected, it would display all three countries as follows:
Displaying only the first country for one-tap
Using the following snippet for iPhone one-tap, only the numbers from the top-ranked country in the list will be used. The meeting schedule email is the default email that you’ll receive, as is the confirmation email you’ll receive when you register for a webinar.
Or iPhone one-tap :
${pickedNumbers[0].countryName!'US'}: ${pickedNumbers[0].displayNumber?replace(' ','')?replace('(0)','')},,${number?c}# <#if pickedNumbers[0].free>(Toll-free)</#if><#if ((pickedNumbers?size) > 1 && pickedNumbers[1].country == pickedNumbers[0].country)> or ${pickedNumbers[1].displayNumber?replace(' ','')?replace('(0)','')},,${number?c}# <#if pickedNumbers[1].free>(Toll-free)</#if></#if>
As an example, if you were selecting the United States, Canada and the United Kingdom, and the United States was the first country listed, the screen would appear as follows:
Note: There will only be two numbers displayed when you click on this. The following code can be added if you have more than one number selected and would like to display more than one number. Here n represents the “nth” dial-in number for the country in question.
<#if ((pickedNumbers?size) > n && pickedNumbers[n].country == pickedNumbers[0].country)> or ${pickedNumbers[n].displayNumber?replace(' ','')?replace('(0)','')},,${number?c}# <#if pickedNumbers[n].free>(Toll-free)</#if></#if>
Note: In the example, only numbers from the same country are allowed to be used. By removing this restriction from the code, you will be able to remove this restriction
&& pickedNumbers[n].country == pickedNumbers[0].country)
It will also be necessary to specify the country when we are done by using the following method.
${pickedNumbers[n].countryName!'US'}:
It is possible to show three one-tap options for as many countries as you wish using the following.
Or iPhone one-tap :
${pickedNumbers[0].countryName!'US'}: ${pickedNumbers[0].displayNumber?replace(' ','')?replace('(0)','')},,${number?c}# <#if pickedNumbers[0].free>(Toll-free)</#if><#if ((pickedNumbers?size) > 1)> or ${pickedNumbers[1].countryName!'US'}: ${pickedNumbers[1].displayNumber?replace(' ','')?replace('(0)','')},,${number?c}# <#if pickedNumbers[1].free>(Toll-free)</#if></#if>
<#if ((pickedNumbers?size) > 2)> or ${pickedNumbers[2].countryName!'US'}: ${pickedNumbers[2].displayNumber?replace(' ','')?replace('(0)','')},,${number?c}# <#if pickedNumbers[2].free>(Toll-free)</#if></#if>
Manually adding one-tap mobile links for specific numbers
As an alternative, you can manually add specific one-tap mobile numbers to the meeting template if you would like to see them always included in your meeting invites rather than letting Zoom automatically add the numbers based on your preference settings for dial-ins.
The one-tap mobile links should be formatted in the following way:
phoneNumber,,meetingID,,,,,,0#,,meetingPassword
This template, however, can also be used to apply some of the existing email variables in conjunction with the number that you want to require, thus allowing the meeting ID and the passcode to be changed based on the specific meeting.
+15555555555,,${meetingNumber},,,,,,0#,,${password}
Notes:
- If one-tap mobile numbers are hardcoded into the template, it will cause issues with participants using the dial-in numbers contained in the one-tap links if in the future we make any changes to our dial-in numbers or the access those numbers have to your account.
- We have built our one-tap mobile links so that they work on iOS devices, but we would not be able to make them work on Android devices. The links will also need to be displayed as HTML, as they are a type of link, so plain text is not possible to display them. Because of this, if you view an invitation in an email or calendar app that does not support HTML, you may encounter problems. It is recommended that you use the Gmail or Outlook apps, but there may be other apps that work as well.
- The one-tap mobile link will not function correctly if the dial-in number supports more than one language. In this case, the automatic receptionist will ask you first in which language you wish to receive services. As an alternative, you can skip the option by adding 0#,, before the meeting number in the one-tap link, but this would eliminate any choice for those who wish to join via one-tap.
Read it also –
Global Currencies And Payments For Zoom Events |
Specifying Global Dial In Countries Regions In Zoom App |
Message Archive By Global Relay In Zoom App |
Using Global Relay Archive For Meetings For Zoom |
Frequently Asked Questions
How do I customize my Zoom invitation email?
How do I schedule a Zoom meeting email template?
- Zoom’s web portal can be accessed by signing in.
- Click Advanced then Branding from the navigation menu.
- Select Emails from the tabs.
- The Meeting Schedule Email can be edited by clicking the Edit button next to it. …
- The template can be customized with custom email variables.
- You can preview the template by clicking Preview.
How do you write a Zoom meeting invitation?
- Start Zoom’s desktop client and sign in.
- Meetings can be scheduled.
- On the Meetings tab, click the Meetings button.
- Click Copy Invitation to invite others to the meeting you’d like to invite them to. …
- Edit your calendar to add meetings. …
- Choose the calendar you want to add from the Calendar section.
- Save the file.
How do I edit the Zoom meeting template?
- Zoom’s web portal can be accessed by signing in.
- Go to the Meetings menu and click it.
- Choose Meeting Templates from the drop-down menu. You can view a list of saved templates on this page, delete a template, or schedule a meeting using a particular template.
Can you create a poll template in Zoom?
How do I save a webinar template in Zoom?
Can I import a poll into a zoom meeting?
How do you make a Zoom poll before a meeting?
- Go to Zoom’s web portal and sign in.
- Click Meetings from the navigation menu.
- Your meeting topic will appear when you click on it. …
- The Polls/Quizzes tab can be found at the bottom. …
- You can create advanced polls and quizzes by clicking Create.