import { Body, Head, Html, Preview, Text } from '@react-email/components' import { plainEmailStyles as styles } from '@/components/emails/_styles' interface AbandonedCheckoutEmailProps { userName?: string } export function AbandonedCheckoutEmail({ userName }: AbandonedCheckoutEmailProps) { return ( Did you run into an issue with your upgrade?
{userName ? `Hi ${userName},` : 'Hi,'} I saw that you tried to upgrade your Sim plan but didn't end up completing it. Did you run into an issue, or did you have a question? Here to help. — Emir
Founder, Sim
) } export default AbandonedCheckoutEmail