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>""" |