-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailFormat.php
More file actions
87 lines (71 loc) · 2.23 KB
/
emailFormat.php
File metadata and controls
87 lines (71 loc) · 2.23 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Format</title>
<style>
body{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f8f9fa;
}
.container{
max-width: 600px;
margin: auto;
padding: 20px;
background-color: white;
border: 1px solid #ddd;
text-align: center;
border-radius: 6px;
}
.image-thumbnail{
width: 100%;
max-width: 150px;
border: 1px solid #ddd;
border-radius: 4px;
}
.code{
color: green;
background:#cff0bb;
border-radius: 15px;
display: flex;
justify-content: center;
}
.number{
width: 100px;
text-align: center;
}
.contact{
margin: 40px 0px;
}
.contact a{
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h4>FoodMart - Forgot Password Verification Code</h4>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS664wHiP_KpnYqb75YRsBdq4AdQaLf0Ldf-dMk4fRR9mVO7Ydq" alt="" class="image-thumbnail">
<p>
<b>Hello, Fahman</b><br>
<small> Welcome to FoodMart. We are excited to have you on board. <br>
To get started, please verify your email address by entering Verification the code below <br>
</small>
<div class="code">
<h2 class="number">123467</h2>
</div>
<br>
<small>This code is valid for the next <b>5 minutes</b>. If you did not request this, please contact our support team.</small>
<br>
<div class="contact">
<small>Need assistance? <a href="">Contact Support</a></small><br>
<small>Read our <a href="">Privacy Policy</a></small><br>
<small>© 2024 FoodMart. All rights reserved.</small><br>
</div>
</p>
</div>
</body>
</html>