import type { TFunction } from "i18next"; import { WEBAPP_URL, COMPANY_NAME } from "@calcom/lib/constants"; import { V2BaseEmailHtml } from "../components"; interface DailyVideoDownloadTranscriptEmailProps { language: TFunction; transcriptDownloadLinks: Array; title: string; date: string; name: string; } export const DailyVideoDownloadTranscriptEmail = ( props: DailyVideoDownloadTranscriptEmailProps & Partial> ) => { const image = `${WEBAPP_URL}/emails/logo.png`; return (

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

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

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

{props.transcriptDownloadLinks.map((_, index) => { return (

<>{props.title}

{props.date} Transcript {index + 1}

); })}

<>{props.language("happy_scheduling")},

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

); };