import { Text } from "@react-email/components" import { Callout, Detail } from "../ui/Callout" import { Heading } from "../ui/Heading" import { Layout } from "../ui/Layout" type TestEmailProps = { project_name: string email: string } export default function TestEmail({ project_name = "{{ project_name }}", email = "{{ email }}", }: TestEmailProps) { return ( Test email Hi, This is a test email from {project_name}. If you're reading it, email delivery is configured correctly. If you weren't expecting this email, you can safely ignore it. ) }