It has come to our attention that if you enable "Use HTML format email for Outlook plugin"
The Join link/icon on MacOS, iPadOS and iOS Calendar stops working as the Apple application uses the first link in the Description of the event to populate this field.
The default HTML Meeting Schedule Email in Zoom has the Zoom logo as the first link inside the body tags.
Go to https://eu01web.zoom.us/account/branding#/emails and find "Meeting Schedule Email" click Edit on the right.
Click HTML Format
Since we like the general format of the default branded HTML email the idea is to get the meeting join link in before the logo, but not visible in the email client.
To accomplish this we're replacing the https://zoom.us link
with
${meetingUrl}
Making the entire table row look like
<tr>
<td style="padding-top: 30px;padding-bottom: 10px;background-color:#f4f5f9 ">
<a href="${meetingUrl}">
<img src="${zoomLogo}" style="border-style: solid;" width="110" height="25" border="0"/>
</a>
</td>
</tr>
Thus keeping the appearance, but changing the link.
(As of writing this it is untested beyond the email looking right - BSS 2021-10-06)
Comments
0 comments
Please sign in to leave a comment.