import { Heading, Text } from "@react-email/components"; import * as React from "react"; import RootLayout from "../components/root-layout"; export const Test = () => { const title = `Your mail server is ready to go!`; return ( {title} This is a test email from Tabby to confirm that your mail server configuration is correct. If you have received this email, it means that your configuration was successful. Thank you for using Tabby! ); }; export default Test;