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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.email-container {
background-color: #ffffff;
margin: 20px auto;
padding: 20px;
max-width: 600px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.email-header {
background-color:#274a61;
color: white;
padding: 10px 20px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
text-align: center;
}
.email-body {
padding: 20px;
color: #333333;
}
.email-body h2 {
color: #274a61;
}
.email-body p {
line-height: 1.6;
}
.email-footer {
margin-top: 20px;
padding: 10px;
text-align: center;
font-size: 12px;
color: #888888;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #0888ff;
color: white;
text-decoration: none;
border-radius: 4px;
margin-top: 20px;
}
.btn:hover {
background-color: #0c3357;
}
.social-icons {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
gap: 15px;
}
.social-icons li {
display: inline-block;
}
.social-icons a {
text-decoration: none;
color: #0888ff;
font-size: 20px;
}
</style>
</head>
<body>
<div class="email-container">
<div class="email-header">
<h1>Congratulations on Enrolling!</h1>
</div>
<div class="email-body">
<h2>Hi {{ user.username }},</h2>
<p>Thank you for enrolling in the <strong>{{course_title }}</strong> course.</p>
<p>We're excited to have you join our learning community!</p>
<p>Here's what you can do next:</p>
<ul>
<li>Check out the course material and updates in our community.</li>
<li>Get notified when new content is available.</li>
<li>Connect with fellow learners and instructors.</li>
</ul>
<p>To join the course community and stay updated on when course materials will be provided, click the link below:</p>
<a href="{{ community_link }}" class="btn">Join Course Community</a>
<p>If you have any questions, feel free to reply to this email or contact our support team.</p>
</div>
<div class="email-footer">
<ul class="social-icons">
<li><a href="https://www.facebook.com/profile.php?id=100091470267419&mibextid=LQQJ4d" ><i class="fab fa-facebook"></i></a></li>
<li><a href="https://www.twitter.com/pythoneer_001" ><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/samson-odetola-509657249" ><i class="fab fa-linkedin"></i></a></li>
<!-- Add more social links with Font Awesome icons as needed -->
</ul>
<p>Thank you for being part of our learning platform!</p>
<p>© 2025 Nexapy Technologies, All Rights Reserved.</p>
</div>
</div>
</body>
</html>