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. ) } const bodyTextStyle = { color: "#334155", fontSize: "15px", lineHeight: "26px", margin: "0 0 18px", } const supportingTextStyle = { color: "#64748b", fontSize: "14px", lineHeight: "23px", margin: "0 0 16px", }