forked from ski043/InvoiceMarshal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML_TEMPLATE_DEFAULT.html
86 lines (79 loc) · 1.91 KB
/
HTML_TEMPLATE_DEFAULT.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
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Invoice</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333333;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
text-align: center;
padding: 20px 0;
background-color: #f8f9fa;
}
.logo {
max-width: 150px;
height: auto;
}
.content {
padding: 30px 0;
}
.button {
display: inline-block;
padding: 12px 24px;
background-color: #0066cc;
color: #ffffff !important;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
margin: 20px 0;
}
.button:hover {
background-color: #0052a3;
}
.footer {
text-align: center;
padding: 20px;
background-color: #f8f9fa;
font-size: 12px;
color: #666666;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<h2>Invoice for jan</h2>
<p>Dear User Whats up jan,</p>
<p>
I hope this email finds you well. Please find attached your invoice
attached below
</p>
<p>Invoice Details:</p>
<ul>
<li>Invoice Number: xyz</li>
<li>Due Date: xyz</li>
<li>Total Amount: xyz</li>
</ul>
<p>You can download your invoice by clicking the button below:</p>
<a href="xyz" class="button">Download Invoice</a>
<p>
If you have any questions or concerns, please don't hesitate to
contact us.
</p>
<p>Thank you for your business!</p>
</div>
</div>
</body>
</html>