2022-06-06 17:49:56 +00:00
|
|
|
import { renderEmail } from "../";
|
|
|
|
import AttendeeScheduledEmail from "./attendee-scheduled-email";
|
|
|
|
|
|
|
|
export default class AttendeeRescheduledEmail extends AttendeeScheduledEmail {
|
|
|
|
protected getNodeMailerPayload(): Record<string, unknown> {
|
|
|
|
return {
|
|
|
|
icalEvent: {
|
|
|
|
filename: "event.ics",
|
|
|
|
content: this.getiCalEventAsString(),
|
|
|
|
},
|
|
|
|
to: `${this.attendee.name} <${this.attendee.email}>`,
|
|
|
|
from: `${this.calEvent.organizer.name} <${this.getMailerOptions().from}>`,
|
2022-08-26 18:51:32 +00:00
|
|
|
replyTo: [...this.calEvent.attendees.map(({ email }) => email), this.calEvent.organizer.email],
|
2022-09-15 01:27:46 +00:00
|
|
|
subject: `${this.attendee.language.translate("event_type_has_been_rescheduled_on_time_date", {
|
2023-01-10 18:32:50 +00:00
|
|
|
title: this.calEvent.title,
|
2022-06-06 17:49:56 +00:00
|
|
|
date: this.getFormattedDate(),
|
|
|
|
})}`,
|
2022-09-15 01:27:46 +00:00
|
|
|
html: renderEmail("AttendeeRescheduledEmail", {
|
2022-06-06 17:49:56 +00:00
|
|
|
calEvent: this.calEvent,
|
|
|
|
attendee: this.attendee,
|
|
|
|
}),
|
|
|
|
text: this.getTextBody("event_has_been_rescheduled", "emailed_you_and_any_other_attendees"),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|