import { Text, Section } from "@react-email/components"; import { EmailLayout } from "./layout"; interface Props { po: { poNumber: string; title: string }; } export function VendorIdNeededEmail({ po }: Props) { return ( A vendor ID is required before purchase order {po.poNumber} can proceed.
PO Number {po.poNumber} Title {po.title}
Please log in to PPMS, update the vendor details on this order, and the manager will be notified to continue the review.
); } export default VendorIdNeededEmail;