
 export const resetPasswordEmail = function (otp: string) {
    const html = `
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Quantcapital - Reset Password</title>
    </head>
    <body style="margin: 0; padding: 0; font-family: Arial, sans-serif;">
        <div style="max-width: 600px; margin: auto; padding: 20px;">
            <h2 style="font-size: 24px; color: #00C194;">Forgot Password</h2>
            <p style="font-size: 16px; color: #50576D;">A request has been received to change the password for your quantcapital account.</p>
            <p style="font-size: 16px; color: #50576D;">Your OTP is: <strong>${otp}</strong></p>
            <p style="font-size: 16px; color: #50576D;">Please enter this OTP to reset your password.</p>
            <p style="font-size: 16px; color: #50576D;">If you didn't request this change, you can ignore this email.</p>
            <p style="font-size: 16px; color: #50576D;">For any queries, please contact Support at <a href="mailto:" style="text-decoration: none; color: #00C194;"></a></p>
            <p style="font-size: 16px; color: #50576D;">Thank You</p>
        </div>
    </body>
    </html>`;
    const text = `
                `;

    return {
      html: html,
      text: text,
    };
  };
