2023-01-04 22:14:46 +00:00
|
|
|
import { APP_NAME } from "@calcom/lib/constants";
|
|
|
|
|
2022-06-06 17:49:56 +00:00
|
|
|
import { renderEmail } from "../";
|
|
|
|
import OrganizerRequestEmail from "./organizer-request-email";
|
|
|
|
|
|
|
|
export default class OrganizerRequestReminderEmail extends OrganizerRequestEmail {
|
|
|
|
protected getNodeMailerPayload(): Record<string, unknown> {
|
2023-02-27 20:45:40 +00:00
|
|
|
const toAddresses = [this.teamMember?.email || this.calEvent.organizer.email];
|
2022-06-06 17:49:56 +00:00
|
|
|
|
|
|
|
return {
|
2023-01-04 22:14:46 +00:00
|
|
|
from: `${APP_NAME} <${this.getMailerOptions().from}>`,
|
2022-06-06 17:49:56 +00:00
|
|
|
to: toAddresses.join(","),
|
|
|
|
subject: `${this.t("event_awaiting_approval_subject", {
|
2023-01-10 18:32:50 +00:00
|
|
|
title: this.calEvent.title,
|
2022-06-06 17:49:56 +00:00
|
|
|
date: this.getFormattedDate(),
|
|
|
|
})}`,
|
|
|
|
html: renderEmail("OrganizerRequestReminderEmail", {
|
|
|
|
calEvent: this.calEvent,
|
|
|
|
attendee: this.calEvent.organizer,
|
|
|
|
}),
|
|
|
|
text: this.getTextBody("event_still_awaiting_approval"),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|