
* feat: add translations for forgot password email and misc * fix: type fixes * feat: translate invitation email * fix: e2e tests * fix: lint * feat: type fixes and i18n for emails * Merge main * fix: jest import on server path * Merge * fix: playwright tests * fix: lint Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
102 lines
2.9 KiB
TypeScript
102 lines
2.9 KiB
TypeScript
import dayjs, { Dayjs } from "dayjs";
|
|
import localizedFormat from "dayjs/plugin/localizedFormat";
|
|
import timezone from "dayjs/plugin/timezone";
|
|
import utc from "dayjs/plugin/utc";
|
|
|
|
import EventMail from "./EventMail";
|
|
|
|
dayjs.extend(utc);
|
|
dayjs.extend(timezone);
|
|
dayjs.extend(localizedFormat);
|
|
|
|
export default class EventRejectionMail extends EventMail {
|
|
/**
|
|
* Returns the email text as HTML representation.
|
|
*
|
|
* @protected
|
|
*/
|
|
protected getHtmlRepresentation(): string {
|
|
return (
|
|
`
|
|
<body style="background: #f4f5f7; font-family: Helvetica, sans-serif">
|
|
<div
|
|
style="
|
|
margin: 0 auto;
|
|
max-width: 450px;
|
|
background: white;
|
|
border-radius: 0.75rem;
|
|
border: 1px solid #e5e7eb;
|
|
padding: 2rem 2rem 2rem 2rem;
|
|
text-align: center;
|
|
margin-top: 40px;
|
|
"
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
style="height: 60px; width: 60px; color: #ba2525"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
<h1 style="font-weight: 500; color: #161e2e;">${this.calEvent.language("meeting_request_rejected")}</h1>
|
|
<p style="color: #4b5563; margin-bottom: 30px;">${this.calEvent.language("emailed_you_and_attendees")}</p>
|
|
<hr />
|
|
` +
|
|
`
|
|
</div>
|
|
<div style="text-align: center; margin-top: 20px; color: #ccc; font-size: 12px;">
|
|
<img style="opacity: 0.25; width: 120px;" src="https://app.cal.com/cal-logo-word.svg" alt="Cal.com Logo"></div>
|
|
</body>
|
|
`
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns the payload object for the nodemailer.
|
|
*
|
|
* @protected
|
|
*/
|
|
protected getNodeMailerPayload(): Record<string, unknown> {
|
|
return {
|
|
to: `${this.calEvent.attendees[0].name} <${this.calEvent.attendees[0].email}>`,
|
|
from: `${this.calEvent.organizer.name} <${this.getMailerOptions().from}>`,
|
|
replyTo: this.calEvent.organizer.email,
|
|
subject: this.calEvent.language("rejected_event_type_with_organizer", {
|
|
eventType: this.calEvent.type,
|
|
organizer: this.calEvent.organizer.name,
|
|
date: this.getInviteeStart().format("dddd, LL"),
|
|
}),
|
|
html: this.getHtmlRepresentation(),
|
|
text: this.getPlainTextRepresentation(),
|
|
};
|
|
}
|
|
|
|
protected printNodeMailerError(error: Error): void {
|
|
console.error("SEND_BOOKING_CONFIRMATION_ERROR", this.calEvent.attendees[0].email, error);
|
|
}
|
|
|
|
/**
|
|
* Returns the inviteeStart value used at multiple points.
|
|
*
|
|
* @protected
|
|
*/
|
|
protected getInviteeStart(): Dayjs {
|
|
return dayjs(this.calEvent.startTime).tz(this.calEvent.attendees[0].timeZone);
|
|
}
|
|
|
|
/**
|
|
* Adds the video call information to the mail body.
|
|
*
|
|
* @protected
|
|
*/
|
|
protected getLocation(): string {
|
|
return "";
|
|
}
|
|
}
|