143 lines
6.8 KiB
TypeScript
143 lines
6.8 KiB
TypeScript
import dayjs from "dayjs";
|
|
import localizedFormat from "dayjs/plugin/localizedFormat";
|
|
import timezone from "dayjs/plugin/timezone";
|
|
import toArray from "dayjs/plugin/toArray";
|
|
import utc from "dayjs/plugin/utc";
|
|
|
|
import AttendeeScheduledEmail from "./attendee-scheduled-email";
|
|
import {
|
|
emailHead,
|
|
emailSchedulingBodyHeader,
|
|
emailBodyLogo,
|
|
emailScheduledBodyHeaderContent,
|
|
emailSchedulingBodyDivider,
|
|
} from "./common";
|
|
|
|
dayjs.extend(utc);
|
|
dayjs.extend(timezone);
|
|
dayjs.extend(localizedFormat);
|
|
dayjs.extend(toArray);
|
|
|
|
export default class AttendeeCancelledEmail extends AttendeeScheduledEmail {
|
|
protected getNodeMailerPayload(): Record<string, unknown> {
|
|
return {
|
|
to: `${this.attendee.name} <${this.attendee.email}>`,
|
|
from: `${this.calEvent.organizer.name} <${this.getMailerOptions().from}>`,
|
|
replyTo: this.calEvent.organizer.email,
|
|
subject: `${this.attendee.language.translate("event_cancelled_subject", {
|
|
eventType: this.calEvent.type,
|
|
name: this.calEvent.team?.name || this.calEvent.organizer.name,
|
|
date: `${this.getInviteeStart().format("h:mma")} - ${this.getInviteeEnd().format(
|
|
"h:mma"
|
|
)}, ${this.attendee.language.translate(
|
|
this.getInviteeStart().format("dddd").toLowerCase()
|
|
)}, ${this.attendee.language.translate(
|
|
this.getInviteeStart().format("MMMM").toLowerCase()
|
|
)} ${this.getInviteeStart().format("D")}, ${this.getInviteeStart().format("YYYY")}`,
|
|
})}`,
|
|
html: this.getHtmlBody(),
|
|
text: this.getTextBody(),
|
|
};
|
|
}
|
|
|
|
protected getTextBody(): string {
|
|
return `
|
|
${this.attendee.language.translate("event_request_cancelled")}
|
|
${this.attendee.language.translate("emailed_you_and_any_other_attendees")}
|
|
${this.getWhat()}
|
|
${this.getWhen()}
|
|
${this.getLocation()}
|
|
${this.getDescription()}
|
|
${this.getAdditionalNotes()}
|
|
${this.calEvent.cancellationReason && this.getCancellationReason()}
|
|
`.replace(/(<([^>]+)>)/gi, "");
|
|
}
|
|
|
|
protected getHtmlBody(): string {
|
|
const headerContent = this.attendee.language.translate("event_cancelled_subject", {
|
|
eventType: this.calEvent.type,
|
|
name: this.calEvent.team?.name || this.calEvent.organizer.name,
|
|
date: `${this.getInviteeStart().format("h:mma")} - ${this.getInviteeEnd().format(
|
|
"h:mma"
|
|
)}, ${this.attendee.language.translate(
|
|
this.getInviteeStart().format("dddd").toLowerCase()
|
|
)}, ${this.attendee.language.translate(
|
|
this.getInviteeStart().format("MMMM").toLowerCase()
|
|
)} ${this.getInviteeStart().format("D")}, ${this.getInviteeStart().format("YYYY")}`,
|
|
});
|
|
|
|
return `
|
|
<!doctype html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
|
${emailHead(headerContent)}
|
|
|
|
<body style="word-spacing:normal;background-color:#F5F5F5;">
|
|
<div style="background-color:#F5F5F5;">
|
|
${emailSchedulingBodyHeader("xCircle")}
|
|
${emailScheduledBodyHeaderContent(
|
|
this.attendee.language.translate("event_request_cancelled"),
|
|
this.attendee.language.translate("emailed_you_and_any_other_attendees")
|
|
)}
|
|
${emailSchedulingBodyDivider()}
|
|
<!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" bgcolor="#FFFFFF" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
|
<div style="background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px;">
|
|
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#FFFFFF;background-color:#FFFFFF;width:100%;">
|
|
<tbody>
|
|
<tr>
|
|
<td style="border-left:1px solid #E1E1E1;border-right:1px solid #E1E1E1;direction:ltr;font-size:0px;padding:0px;text-align:center;">
|
|
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:598px;" ><![endif]-->
|
|
<div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">
|
|
<table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
|
|
<tbody>
|
|
<tr>
|
|
<td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">
|
|
<div style="font-family:Roboto, Helvetica, sans-serif;font-size:16px;font-weight:500;line-height:1;text-align:left;color:#3E3E3E;">
|
|
${this.getWhat()}
|
|
${this.getWhen()}
|
|
${this.getWho()}
|
|
${this.getLocation()}
|
|
${this.getDescription()}
|
|
${this.getAdditionalNotes()}
|
|
${this.calEvent.cancellationReason && this.getCancellationReason()}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!--[if mso | IE]></td></tr></table><![endif]-->
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!--[if mso | IE]></td></tr></table><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" bgcolor="#FFFFFF" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]-->
|
|
<div style="background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px;">
|
|
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:#FFFFFF;background-color:#FFFFFF;width:100%;">
|
|
<tbody>
|
|
<tr>
|
|
<td style="border-bottom:1px solid #E1E1E1;border-left:1px solid #E1E1E1;border-right:1px solid #E1E1E1;direction:ltr;font-size:0px;padding:0px;text-align:center;">
|
|
<!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr></tr></table><![endif]-->
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
${emailBodyLogo()}
|
|
<!--[if mso | IE]></td></tr></table><![endif]-->
|
|
</div>
|
|
</body>
|
|
</html>
|
|
`;
|
|
}
|
|
|
|
protected getCancellationReason(): string {
|
|
return `
|
|
<p style="height: 6px"></p>
|
|
<div style="line-height: 6px;">
|
|
<p style="color: #494949;">${this.attendee.language.translate("cancellation_reason")}</p>
|
|
<p style="color: #494949; font-weight: 400; line-height: 24px;">${this.calEvent.cancellationReason}</p>
|
|
</div>`;
|
|
}
|
|
}
|