import { Body, Container, Head, Heading, Html, Preview, Tailwind, Text, render, } from '@react-email/components'; interface Props { productName: string; userDisplayName: string; } export function renderAccountDeleteEmail(props: Props) { const previewText = `We have deleted your ${props.productName} account`; return render( {previewText} {previewText} Hello {props.userDisplayName}, This is to confirm that we've processed your request to delete your account with {props.productName}. We're sorry to see you go. Please note that this action is irreversible, and we'll make sure to delete all of your data from our systems. We thank you again for using {props.productName}. Best,
The {props.productName} Team
, ); }