import { getCurrentYear } from "../../../utils/helpers"

export const trialExpiringEmail = (
  upgradeLink: string,
  userName?: string,
): string => {
  const displayName = userName || "there"
  return `
        <!DOCTYPE html>
        <html lang="en" class="no-js">
        <head>
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <title>Trial Ending Soon - Activate Abundance</title>
            <style type="text/css" rel="stylesheet">
            body,html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0;margin:0}*,::after,::before{box-sizing:border-box}body,html,p{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;color:#1E2938;font-size:16px;line-height:24px;}body{background:#FAFAFA}center{width:600px;text-align:center;margin:20px auto;background: #FFF;padding: 50px 40px; }.email-top{height: 6px; background-color: #605FF0; margin-top: 40px;}.email-bottom{margin-bottom: 40px; height: 6px; background-color: #605FF0;}.email-body{padding:40px 20px;text-align:left;background:#fff}.btn{border-radius: 6px;border: 0;background-color: #605FF0;color:#fff; text-align: center; font-size:14px;letter-spacing:0;line-height:21px; font-weight: 600; padding:12px 24px;display:inline-block;min-width:200px;text-decoration: none; }.btn:focus,.btn:hover{color:#fff;border: 0;opacity:.85;text-decoration: none;}p{margin-top:0}@media(max-width:650px){center{width:430px}}@media(max-width:420px){center{width:100%;padding:0 15px;margin:30px 0}.email-body{padding:30px 20px}}
            </style>
        </head>
        <body>
            <center>
            <img src="cid:unique@cidLogo" alt="Logo" height="100">
            <div class="email-top"></div>
            <div class="email-body">
                <h2 style="text-align: center; margin-bottom: 20px;">Your Free Trial is Ending Soon!</h2>
                <p style="margin-top: 0; margin-bottom: 20px;">Hi ${displayName},</p>
                <p style="margin-bottom: 20px;">Your free trial will expire in less than 24 hours. To continue enjoying full access to all features, upgrade to our Premium plan now.</p>
                <div style="text-align: center; margin: 30px 0;">
                    <a href="${upgradeLink}" class="btn" style="color: #fff;">Upgrade to Premium</a>
                </div>
                <p style="margin-bottom: 20px;">If you choose not to upgrade, you will still be able to view your existing data but won't be able to create or edit records.</p>
                <div>
                    <p style="margin-bottom: 0px;">Regards,</p>
                    <p style="margin-bottom: 0px;">Activate Abundance</p>
                </div>
            </div>
            <div class="email-bottom"></div>
            <div class="email-footer">
                <p style="margin-bottom: 0px;">&copy;${getCurrentYear()} All Rights Reserved.</p>
            </div>
            </center>
        </body>
        </html>
    `
}
