import { Body, Head, Html, Preview, Text } from '@react-email/components'
import { plainEmailStyles as styles } from '@/components/emails/_styles'
interface OnboardingFollowupEmailProps {
userName?: string
}
export function OnboardingFollowupEmail({ userName }: OnboardingFollowupEmailProps) {
return (
{userName ? `Hey ${userName},` : 'Hey,'}
It's been a few days since you signed up. I hope you're enjoying Sim!
I'd love to know — what did you expect when you signed up vs. what did you get?
A reply with your thoughts would really help us improve the product for everyone.
Thanks,
Emir
Founder, Sim
)
}
export default OnboardingFollowupEmail