forked from ski043/InvoiceMarshal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
forgot to add html template
- Loading branch information
Showing
1 changed file
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |