diff --git a/packages/emails/templates/organizer-scheduled-email.ts b/packages/emails/templates/organizer-scheduled-email.ts index a9dd9b8d07..92b454a730 100644 --- a/packages/emails/templates/organizer-scheduled-email.ts +++ b/packages/emails/templates/organizer-scheduled-email.ts @@ -93,20 +93,13 @@ export default class OrganizerScheduledEmail extends BaseEmail { }; } - protected getTextBody( - title = "", - subtitle = "emailed_you_and_any_other_attendees", - extraInfo = "", - callToAction = "" - ): string { + protected getTextBody(title = "", subtitle = "emailed_you_and_any_other_attendees"): string { return ` ${this.t( title || this.calEvent.recurringEvent?.count ? "new_event_scheduled_recurring" : "new_event_scheduled" )} ${this.t(subtitle)} -${extraInfo} ${getRichDescription(this.calEvent, this.t, true)} -${callToAction} `.trim(); }