Files
calendar/packages/emails/src/templates/DailyVideoDownloadTranscriptEmail.tsx
T
Udit TakkarandGitHub 30eb7ce846 feat: add transcription as attachment (#18740)
* feat: add transcription as attachment

* fix: change style
2025-01-21 06:07:10 +00:00

103 lines
3.0 KiB
TypeScript

import type { TFunction } from "next-i18next";
import { WEBAPP_URL, COMPANY_NAME } from "@calcom/lib/constants";
import { V2BaseEmailHtml } from "../components";
interface DailyVideoDownloadTranscriptEmailProps {
language: TFunction;
transcriptDownloadLinks: Array<string>;
title: string;
date: string;
name: string;
}
export const DailyVideoDownloadTranscriptEmail = (
props: DailyVideoDownloadTranscriptEmailProps & Partial<React.ComponentProps<typeof V2BaseEmailHtml>>
) => {
const image = `${WEBAPP_URL}/emails/logo.png`;
return (
<V2BaseEmailHtml
subject={props.language("download_transcript_email_subject", {
title: props.title,
date: props.date,
})}>
<div style={{ width: "89px", marginBottom: "35px" }}>
<a href={WEBAPP_URL} target="_blank" rel="noreferrer">
<img
height="19"
src={image}
style={{
border: "0",
display: "block",
outline: "none",
textDecoration: "none",
height: "19px",
width: "100%",
fontSize: "13px",
}}
width="89"
alt=""
/>
</a>
</div>
<p
style={{
fontSize: "32px",
fontWeight: "600",
lineHeight: "38.5px",
marginBottom: "40px",
color: "black",
}}>
<>{props.language("download_your_transcripts")}</>
</p>
<p style={{ fontWeight: 400, lineHeight: "24px" }}>
<>{props.language("hi_user_name", { name: props.name })},</>
</p>
<p style={{ fontWeight: 400, lineHeight: "24px", marginBottom: "40px" }}>
<>{props.language("you_can_download_transcript_from_attachments")}</>
</p>
{props.transcriptDownloadLinks.map((_, index) => {
return (
<div
key={`transcript-${index}`}
style={{
backgroundColor: "#F3F4F6",
padding: "32px",
marginBottom: "40px",
}}>
<p
style={{
fontSize: "18px",
lineHeight: "20px",
fontWeight: 600,
marginBottom: "8px",
color: "black",
}}>
<>{props.title}</>
</p>
<p
style={{
fontWeight: 400,
lineHeight: "24px",
marginBottom: "24px",
marginTop: "0px",
color: "black",
}}>
{props.date} Transcript {index + 1}
</p>
</div>
);
})}
<p style={{ fontWeight: 400, lineHeight: "24px", marginTop: "32px", marginBottom: "8px" }}>
<>{props.language("happy_scheduling")},</>
</p>
<p style={{ fontWeight: 400, lineHeight: "24px", marginTop: "0px" }}>
<>{props.language("the_calcom_team", { companyName: COMPANY_NAME })}</>
</p>
</V2BaseEmailHtml>
);
};