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 &&
+ ``
+ }
${ providerName || this.calEvent.location }
+${ + (providerName === "Zoom" || providerName === "Google") && + ` + ${this.calEvent.organizer.language.translate("meeting_url_provided_after_confirmed")} + ` + }