File size: 2,027 Bytes
ef1ad9e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
change_email_template = """<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Verify Your New Email Address for MIRA</title>
<style>
body { font-family: Arial, sans-serif; }
.button {
background-color: #007BFF; /* Blue */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
}
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
</style>
</head>
<body>
<div class="container">
<h1>Hi {{ first_name }},</h1>
<p>Your email address associated with your MIRA account has been updated by your loan officer. Please confirm this change by verifying your new email address.</p>
<p>Old Email Address: <strong>{{ old_email }}</strong></p>
<p>New Email Address: <strong>{{ new_email }}</strong></p>
<p>To confirm this change, click the button below:</p>
<p>
<a href="{{ password_url }}" target="_blank" class="button">Verify New Email</a>
</p>
<p>If you are unable to click the button above, please copy and paste the following link into your browser to verify your new email address:</p>
<p>
<a href="{{ password_url }}" target="_blank">{{ password_url }}</a>
</p>
<p>If you did not request this change or have any concerns, please contact our support team immediately at <a href="mailto:[email protected]">[email protected]</a>.</p>
<p>Thank you for your attention to this matter.</p>
<p>Best regards,</p>
<p>The MIRA Team</p>
<p><a href="https://www.miralabs.ai" target="_blank">www.miralabs.ai</a></p>
</div>
</body>
</html>""" |