import { Body, Container, Head, Heading, Html, Preview, Section, Text, Tailwind, } from "@react-email/components"; import * as React from "react"; interface VerifyEmailProps { username?: string; verificationCode: string; } export const VerifyEmail = ({ username, verificationCode, }: VerifyEmailProps) => { const previewText = `Verify your email, ${username}`; return ( {previewText} Verify Your Email Hi {username || "there"}, You’ve requested to verify your email. Please use the verification code below:
{verificationCode}
If you didn’t request this, you can safely ignore this email. Best regards,
Fossorial
); }; export default VerifyEmail;