* refactor: apply biome formatting to packages/features (batch 1 - small subdirs) Format small subdirectories in packages/features: di, flags, holidays, oauth, settings, users, assignment-reason, selectedCalendar, hashedLink, host, form, form-builder, availability, data-table, pbac, schedules, troubleshooter, eventtypes, calendar-subscription, and root-level files. Also includes straggler apps/web BookEventForm.tsx. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 2 - medium subdirs) Format medium subdirectories in packages/features: auth, credentials, calendars, routing-forms, routing-trace, attributes, watchlist, calAIPhone, tasker, and webhooks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 3 - bookings + insights) Format bookings and insights subdirectories in packages/features. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 4 - ee) Format packages/features/ee subdirectory covering billing, workflows, organizations, teams, managed-event-types, round-robin, dsync, integration-attribute-sync, and payments. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 5 - booking-audit part 1) Format booking-audit di, actions, common, dto, repository, and types subdirectories in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 6 - booking-audit part 2) Format booking-audit service subdirectory in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { readFileSync } from "node:fs";
|
|
import Handlebars from "handlebars";
|
|
import type { SendVerificationRequestParams } from "next-auth/providers/email";
|
|
import type { TransportOptions } from "nodemailer";
|
|
import nodemailer from "nodemailer";
|
|
import path from "node:path";
|
|
|
|
import { APP_NAME, WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { serverConfig } from "@calcom/lib/serverConfig";
|
|
|
|
const transporter = nodemailer.createTransport<TransportOptions>({
|
|
...(serverConfig.transport as TransportOptions),
|
|
} as TransportOptions);
|
|
|
|
const sendVerificationRequest = async ({
|
|
identifier,
|
|
url,
|
|
}: Pick<SendVerificationRequestParams, "identifier" | "url">) => {
|
|
const emailsDir = path.resolve(process.cwd(), "..", "..", "packages/emails", "templates");
|
|
const originalUrl = new URL(url);
|
|
const webappUrl = new URL(process.env.NEXTAUTH_URL || WEBAPP_URL);
|
|
if (originalUrl.origin !== webappUrl.origin) {
|
|
url = url.replace(originalUrl.origin, webappUrl.origin);
|
|
}
|
|
const emailFile = readFileSync(path.join(emailsDir, "confirm-email.html"), {
|
|
encoding: "utf8",
|
|
});
|
|
const emailTemplate = Handlebars.compile(emailFile);
|
|
// async transporter
|
|
transporter.sendMail({
|
|
from: `${process.env.EMAIL_FROM}` || APP_NAME,
|
|
to: identifier,
|
|
subject: `Your sign-in link for ${APP_NAME}`,
|
|
html: emailTemplate({
|
|
base_url: WEBAPP_URL,
|
|
signin_url: url,
|
|
email: identifier,
|
|
}),
|
|
});
|
|
};
|
|
|
|
export default sendVerificationRequest;
|