interface EmailTemplateProps { data: { user_name: string, } } export const SellerAccountSubmissionEmailTemplate: React.FC> = ({ data }) => { return (

Hello, {data.user_name} 👋

We are thrilled about your interest in collaborating with us.

Your application is currently being reviewed by our team. Please expect a response within [three] business days. If your submission meets our criteria and is accepted, you will receive a confirmation email from us.

In the meantime, if you have any questions or need further assistance, feel free to reach out to us.

Best regards,
The Mercur Team
mercur.js
) }