You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
TeamFlash/sahara/main/templates/main/mail/welcome_email.html

65 lines
1.7 KiB

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Sahara</title>
<style>
body {
font-family: Arial, sans-serif;
color: #333;
background-color: #f7f7f7;
padding: 30px;
}
.email-container {
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
max-width: 600px;
margin: 0 auto;
}
h1 {
color: #2c3e50;
}
.company-logo {
max-width: 150px;
margin-bottom: 20px;
}
.cta-button {
background-color: #3498db;
color: #ffffff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.cta-button:hover {
background-color: #2980b9;
}
p {
font-size: 16px;
}
</style>
</head>
<body>
<div class="email-container">
<h1>Welcome to Sahara!</h1>
<img src="{% static 'images/sahara_logo.png' %}" alt="Sahara" class="company-logo">
<p>Hello {{ user.first_name }},</p>
<p>Thank you for signing up with Sahara! We're excited to have you on board.</p>
<p>Please click the button below to activate your account:</p>
<a href="{{ activation_link }}" class="cta-button">Activate Your Account</a>
<p>If you did not sign up for this account, please ignore this email.</p>
<p>Best regards,<br>Sahara Team</p>
</div>
</body>
</html>