-
Notifications
You must be signed in to change notification settings - Fork 6
/
message.txt
65 lines (56 loc) · 1.31 KB
/
message.txt
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
<html>
<head>
<style>
.main_heading {
background-color: #333;
color: #fff;
text-align: center;
}
.container {
color: #000000;
border: thick solid #400606; /* Updated border style with red color */
padding: 10px; /* Added padding for better visibility */
margin: 10px; /* Added margin for better spacing */
}
.container1 {
border: thick solid #400606; /* Updated border style with red color */
padding: 10px; /* Added padding for better visibility */
margin: 10px; /* Added margin for better spacing */
color: #000000;
}
</style>
</head>
<body>
<div class="main_heading">
<h2>
Dear Sir/Ma'am,
Thank you for choosing $Airlines_Name.
Unfortunately, your flight has been cancelled, please find alternate flight details below.
</h2>
<h3>PNR Number - $PNR_Number</h3>
</div>
<br>
<div class="container">
$Cancelled_Flight
</div>
<div class="container1">
$Schema_0
</div>
<div class="container1">
$Schema_1
</div>
<div class="container1">
$Schema_2
</div>
<div class="container3">
<br><br>
If you don't wish to choose any of the alternate flights, you may cancel your flight using the link below - <br>
$Cancellation_link
<br>
Have a safe journey.
<br>
Regards,<br>
$Airlines_Name
</div>
</body>
</html>