diff --git a/apps/web/lib/emails/templates/attendee-scheduled-email.ts b/apps/web/lib/emails/templates/attendee-scheduled-email.ts index cedbcab8..91f4afc0 100644 --- a/apps/web/lib/emails/templates/attendee-scheduled-email.ts +++ b/apps/web/lib/emails/templates/attendee-scheduled-email.ts @@ -428,6 +428,12 @@ ${getRichDescription(this.calEvent)}

${ providerName || this.calEvent.location }

+

${ + (providerName === "Zoom" || providerName === "Google") && + ` + ${this.calEvent.organizer.language.translate("meeting_url_provided_after_confirmed")} + ` + }

`; } diff --git a/apps/web/lib/emails/templates/organizer-scheduled-email.ts b/apps/web/lib/emails/templates/organizer-scheduled-email.ts index 39fb8da2..75c0254a 100644 --- a/apps/web/lib/emails/templates/organizer-scheduled-email.ts +++ b/apps/web/lib/emails/templates/organizer-scheduled-email.ts @@ -356,17 +356,17 @@ ${getRichDescription(this.calEvent)} const meetingId = this.calEvent.videoCallData.id; const meetingPassword = this.calEvent.videoCallData.password; const meetingUrl = this.calEvent.videoCallData.url; - return `

${this.calEvent.organizer.language.translate("where")}

-

${providerName} ${ - meetingUrl && - `` - }

+

${providerName} + ${ + meetingUrl && + `` + }

${ meetingId && `
${this.calEvent.organizer.language.translate( @@ -393,7 +393,6 @@ ${getRichDescription(this.calEvent)} if (this.calEvent.additionInformation?.hangoutLink) { const hangoutLink: string = this.calEvent.additionInformation.hangoutLink; - return `

@@ -418,6 +417,12 @@ ${getRichDescription(this.calEvent)}

${ providerName || this.calEvent.location }

+

${ + (providerName === "Zoom" || providerName === "Google") && + ` + ${this.calEvent.organizer.language.translate("meeting_url_provided_after_confirmed")} + ` + }

`; } diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index 0610ad07..65a17c06 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -832,5 +832,6 @@ "or_lowercase": "or", "nevermind": "Nevermind", "go_to": "Go to: ", - "zapier_invite_link": "Zapier Invite Link" + "zapier_invite_link": "Zapier Invite Link", + "meeting_url_provided_after_confirmed":"A Meeting URL will be created once the event is confirmed." }