"use client"; import { Trans, type TFunction } from "next-i18next"; import { APP_NAME, WEBAPP_URL } from "@calcom/lib/constants"; import { BaseEmailHtml, CallToAction } from "../components"; type AdminOrganizationNotification = { language: TFunction; orgSlug: string; webappIPAddress: string; }; const dnsTable = (type: string, name: string, value: string, t: TFunction) => (
| {t("type")} | {t("name")} | {t("value")} |
| {type} | {name} | {value} |
<>{language("admin_org_notification_email_title")}>
<>{language("hi_admin")}!>
Please be sure to configure your DNS registry to point the subdomain corresponding to the new
organization to where the main app is running. Otherwise the organization will not work.
Here are just the very basic options to configure a subdomain to point to their app so it loads the
organization profile page.
You can do it either with the A Record:
{language("admin_org_notification_email_body_part2")}
{dnsTable("CNAME", orgSlug, webAppUrl, language)}{language("admin_org_notification_email_body_part3")}
); };