24Sessions EN
  • account-set-up-settings
    • Account settings
    • Available languages
    • Logo size
    • Setting up co-browsing
    • Setting up custom backgrounds
    • Setting up the Outlook Add-in
    • Setting up the omnichannel widget
    • Testing 24sessions
  • availability-booking-forms
    • Adjust availability of someone else
    • Availability types
    • Connect your calendar to your 24sessions agenda
    • Edit your blocked slots in your availability page
  • emails-notifications
    • Dynamic Links
    • Dynamic Variables
    • Email Customization
  • faq
    • Add a guest to a scheduled meeting
    • Feature request or feedback?
    • Maximum number of attendees for a meeting
  • meeting-room
    • Backgrounds
    • Grid view
    • Image capture
    • Meeting room
    • Sharing your screen when you have a second screen
    • Video overlay
  • meeting-types
    • Add questions to a meeting type
    • Customize review questions per meeting type
    • Download recordings
    • Live now meetings
    • Setting up the Live Now beta
    • The difference between scheduling a meeting and getting booked by customers
    • Waiting room set-up
  • privacy-terms
    • Data Processing Agreement
    • GDPR compliance
    • How can I have my personal data that 24sessions stores removed?
    • How to obtain & access your personal data that 24sessions stores
    • Request to stop processing my personal data
  • product-library
    • Availability feature
    • Booking form functionality
    • Branded settings functionality
    • Co-browsing functionality
    • Custom domain functionality
    • Customer Experience Growth Model
    • Dial-in functionality
    • Email functionality
    • Live now functionality
    • Meeting types functionality
    • My Account functionality
    • Placeholders functionality
    • Recordings functionality
    • Report functionality
    • SMS functionality
    • User & Groups functionality
    • Waiting room functionality
  • product
    • 24sessions Dashboard
    • Account settings
    • Availability
    • Booking link
    • Co-browsing
    • Dynamic dashboard
    • Instant meeting
    • Language settings
    • Live Now Beta
    • Live now
    • Meeting details
    • Meetings overview
    • Omnichannel widget
    • Outlook add-in
    • Reports
    • Reschedule, cancel, add an additional guest, or assign a meeting to someone else
    • Schedule new meeting
    • Test a call in the testroom
  • technical-documentation
    • Supported Browsers
  • troubleshooting-articles
    • Dial-in
    • Most frequent issues
    • Meetingroom 2.0
    • The guest gets stuck in the media check
    • The sound drops during the meeting
    • You don't have video or audio while you both successfully entered the meeting
    • You're experiencing a bad internet connection
  • users-groups
    • Add a new user or group
    • Group management
    • User roles
Powered by GitBook
On this page
  1. emails-notifications

Dynamic Links

Previousemails-notificationsNextDynamic Variables

Last updated 1 year ago

Emails can be customized all the way to the level of editing the HTML, as you can read in our . But to make sure that the meeting link is still added to the email, you can use Dynamic links which will be explained in this article.

This article covers:

Using dynamic links

Links populate a direct URL to take an action without having to provide any extra information. It's a quick access to an action that redirects a user or guest to a specific part of the application.

The most common use case for using links inside email templates is when you want a guest to add the meeting to their Google or Outlook calendar with just one click. Another one is when you want a guest to reschedule a meeting via a single link.

Here is how a link looks like inside an email notification template:

{{ link_guest_reschedule(general.hostname, meeting.guest.accessKey) }}

Note: the link is case sensitive hence the double curly braces {{ }}

24sessions provides you with 10 dynamic links to choose from.

Below you will find a description of each link:

Links for the user

  • {{ link_user_meeting_room(general.hostname, meeting.id) }} --> redirect user to the meeting room

  • {{ link_user_reschedule(general.hostname, meeting.id) }} --> redirect user to reschedule a meeting

  • {{ link_user_cancel(general.hostname, meeting.id) } --> redirect user to cancel the meeting (also by providing with a reason why)

  • {{ link_user_download_ics(general.hostname, meeting.id) }} --> redirect user to quickly download the information of the scheduled meeting as an .ICS file

  • {{link_user_add_to_google_calendar(general.hostname, meeting.id) }} --> redirect user to add the scheduled meeting to his calendar

Links for the guest

  • {{ link_guest_meeting_room(general.hostname, meeting.guest.accessKey) }} --> redirect guest to the meeting room

  • {{ link_guest_reschedule(general.hostname, meeting.guest.accessKey) }} --> redirect guest to reschedule a meeting

  • {{ link_guest_cancel(general.hostname, meeting.guest.accessKey) }} --> redirect guest to cancel the meeting (also by providing with a reason why)

  • {{ link_guest_download_ics(general.hostname, meeting.guest.accessKey) }} --> redirect guests to quickly download the information of the scheduled meeting as an .ICS file

  • {{link_guest_add_to_google_calendar(general.hostname, meeting.guest.accessKey) }} --> redirect guest to add the scheduled meeting to his calendar

Custom domains

When using custom domains, in case you display the URL, make sure you update the displayed link with the custom domain.

Example:

<a href="{{ link_meeting_room(general.hostname, meeting.guest.accessKey) }}">customdomain.com/join/{{ meeting.guest.accessKey }}</a>

Just copy and paste the following code into your notification template 😉

{{ general.hostname }}/join/{{ meeting.guest.accessKey }}

Things to remember:

  • Links are case sensitive.

  • To include links in the template always use {{ double curly braces }}.

  • Wrong links will raise an error when editing the notification template.

💡Pro-tip: Include a quick access meeting link - no enter code needed - for your guest with the use of .

variables
email customization article
Using dynamic links
All the different user dynamic links
All the different guest dynamic links
How this works with a custom domain
Things to remember