d82f87aa2a
* wip * refactor(emails): remove circular dependencies from packages/emails - Extract renderEmail imports to use direct path (../src/renderEmail) instead of index - Create utility files for shared types and functions: - lib/utils/team-invite-utils.ts: TeamInvite type and utility functions - lib/utils/booking-redirect-types.ts: IBookingRedirect type - lib/utils/email-types.ts: OrganizationCreation and EmailVerifyCode types - lib/utils/date-formatting.ts: getFormattedDate utility function - Update all template files to import renderEmail directly from ../src/renderEmail - Update React template components to import from utility files instead of class templates - This eliminates all circular dependencies within packages/emails (reduced from 234 to 0 internal circular deps) Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * refactor(trpc): remove circular dependency in routing-forms - Extract ZFormByResponseIdInputSchema to separate schema file - Create getResponseWithFormFields.schema.ts to break circular dependency - Update imports in _router.ts and getResponseWithFormFields.handler.ts - Fix eslint warnings by updating deprecated rule names - This eliminates the circular dependency within packages/trpc (reduced from 1 to 0 internal circular deps) Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix(emails): correct TeamInvite type definition - Make isExistingUserMovedToOrg required (not optional) - Make prevLink and newLink non-optional (string | null) - Add back JSDoc comment for isAutoJoin field - This fixes type check errors in CI Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * wip * Fixes types folder --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import type { TFunction } from "i18next";
|
|
|
|
import { EMAIL_FROM_NAME } from "@calcom/lib/constants";
|
|
|
|
import renderEmail from "../src/renderEmail";
|
|
import BaseEmail from "./_base-email";
|
|
|
|
export type OrganizationNotification = {
|
|
t: TFunction;
|
|
instanceAdmins: { email: string }[];
|
|
ownerEmail: string;
|
|
orgSlug: string;
|
|
webappIPAddress: string;
|
|
};
|
|
|
|
export default class AdminOrganizationNotification extends BaseEmail {
|
|
input: OrganizationNotification;
|
|
|
|
constructor(input: OrganizationNotification) {
|
|
super();
|
|
this.name = "SEND_ADMIN_ORG_NOTIFICATION";
|
|
this.input = input;
|
|
}
|
|
|
|
protected async getNodeMailerPayload(): Promise<Record<string, unknown>> {
|
|
return {
|
|
from: `${EMAIL_FROM_NAME} <${this.getMailerOptions().from}>`,
|
|
to: this.input.instanceAdmins.map((admin) => admin.email).join(","),
|
|
subject: `${this.input.t("admin_org_notification_email_subject")}`,
|
|
html: await renderEmail("AdminOrganizationNotificationEmail", {
|
|
orgSlug: this.input.orgSlug,
|
|
webappIPAddress: this.input.webappIPAddress,
|
|
language: this.input.t,
|
|
}),
|
|
text: this.getTextBody(),
|
|
};
|
|
}
|
|
|
|
protected getTextBody(): string {
|
|
return `${this.input.t("hi_admin")}, ${this.input.t("admin_org_notification_email_title").toLowerCase()}
|
|
${this.input.t("admin_org_notification_email_body")}`.trim();
|
|
}
|
|
}
|