generated from uca-argentina/project-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreservationNotificationForStudentTemplate.html
77 lines (69 loc) · 1.8 KB
/
reservationNotificationForStudentTemplate.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class Notification</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333333;
margin: 0;
padding: 0;
}
.email-container {
width: 100%;
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
background-color: #4CAF50;
padding: 10px;
border-radius: 8px 8px 0 0;
color: #ffffff;
}
.content {
padding: 20px;
line-height: 1.6;
}
.content p {
margin: 0 0 10px;
}
.footer {
margin-top: 20px;
text-align: center;
font-size: 12px;
color: #888888;
}
</style>
</head>
<body>
<div class="email-container">
<div class="header">
<h1>Class Notification</h1>
</div>
<div class="content">
<p>Dear Student,</p>
<p>This is a confirmation that you have scheduled a class with <strong>{{teacherName}}</strong> for the subject <strong>{{subjectname}}</strong>.</p>
<p><strong>Class Details:</strong></p>
<ul>
<li><strong>Teacher Name:</strong> {{teacherName}}</li>
<li><strong>Subject:</strong> {{subjectname}}</li>
<li><strong>Date and Time:</strong> {{formattedDate}}</li>
</ul>
<p>If you have any questions or need further information, feel free to contact us.</p>
<p>Best regards,</p>
<p>The Coordination Team</p>
</div>
<div class="footer">
<p>This is an automated message, please do not reply to this email.</p>
</div>
</div>
</body>
</html>