import { Html, Head, Body, Container, Section, Text, Hr, } from "@react-email/components"; interface EmailLayoutProps { children: React.ReactNode; previewText?: string; } export function EmailLayout({ children, previewText }: EmailLayoutProps) { return (
PPMS
{children}
This message was sent by PPMS (Pelagia Payment Management System). You received it because you are a stakeholder on this purchase order.
); }