* fix: round robin recurring don't send email if noEmail * fix: noEmail: false for non platform requests * fix: booking e2e tests * refactor: move bookings e2e tests in folder and uniform name * test: emails * test: team emails * reschedule and cancel emails with api key * test: round robin reassign emails * test: confirm and decline emails * test: confirm and decline emails * fix tests * test: recurring booking emails * remove unused imports and spies * fix test * remove log * chore: bump libraries * try to fix ci tests
38 lines
1.4 KiB
TypeScript
38 lines
1.4 KiB
TypeScript
import { EMAIL_FROM_NAME } from "@calcom/lib/constants";
|
|
import type { CalendarEvent, Person } from "@calcom/types/Calendar";
|
|
|
|
import { renderEmail } from "../";
|
|
import AttendeeScheduledEmail from "./attendee-scheduled-email";
|
|
|
|
export default class AttendeeRequestEmail extends AttendeeScheduledEmail {
|
|
protected async getNodeMailerPayload(): Promise<Record<string, unknown>> {
|
|
const toAddresses = this.calEvent.attendees.map((attendee) => attendee.email);
|
|
|
|
return {
|
|
from: `${EMAIL_FROM_NAME} <${this.getMailerOptions().from}>`,
|
|
to: toAddresses.join(","),
|
|
replyTo: [...this.calEvent.attendees.map(({ email }) => email), this.calEvent.organizer.email],
|
|
subject: `${this.calEvent.attendees[0].language.translate("booking_submitted_subject", {
|
|
title: this.calEvent.title,
|
|
date: this.getFormattedDate(),
|
|
})}`,
|
|
html: await this.getHtmlRequestEmail(this.calEvent, this.attendee),
|
|
text: this.getTextBody(
|
|
this.calEvent.attendees[0].language.translate("booking_submitted", {
|
|
name: this.calEvent.attendees[0].name,
|
|
}),
|
|
this.calEvent.attendees[0].language.translate("user_needs_to_confirm_or_reject_booking", {
|
|
user: this.calEvent.organizer.name,
|
|
})
|
|
),
|
|
};
|
|
}
|
|
|
|
async getHtmlRequestEmail(calEvent: CalendarEvent, attendee: Person) {
|
|
return await renderEmail("AttendeeRequestEmail", {
|
|
calEvent,
|
|
attendee,
|
|
});
|
|
}
|
|
}
|