import type { TFunction } from "next-i18next"; import { APP_NAME, SUPPORT_MAIL_ADDRESS, COMPANY_NAME } from "@calcom/lib/constants"; import { BaseEmailHtml } from "../components"; export type OrganizationEmailVerify = { language: TFunction; user: { email: string; }; code: string; }; export const OrganisationAccountVerifyEmail = ( props: OrganizationEmailVerify & Partial> ) => { return (

<>{props.language("organization_verify_header")}

<>{props.language("hi_user_name", { name: props.user.email })}!

<>{props.language("organization_verify_email_body")}

{props.code}

<> {props.language("happy_scheduling")}
<>{props.language("the_calcom_team", { companyName: COMPANY_NAME })}

); };