import type { TFunction } from "next-i18next"; import { Trans } from "next-i18next"; import { CAL_URL } from "@calcom/lib/constants"; import { BaseEmailHtml, CallToAction } from "../components"; export const SlugReplacementEmail = ( props: { slug: string; name: string; teamName: string; t: TFunction; } & Partial> ) => { const { slug, name, teamName, t } = props; return ( <>

Hi {name}

,

An administrator on the {teamName} team has replaced your event type{" "} /{slug} with a managed event type that they control.

Your link will continue to work but somesettings for it may have changed. You can review it in event types.

If you have any questions about the event type, please reach out to your administrator.

Happy scheduling,
The Cal.com team

{/*

<>{t("email_body_slug_replacement_suggestion")}

*/}
); };