New HTML 2
New HTML 2
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Invoice #[Invoice Number]</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
.container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #FFFFFF;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.invoice-details {
margin-bottom: 20px;
}
.invoice-details table {
width: 100%;
border-collapse: collapse;
}
.invoice-details th,
.invoice-details td {
border: 1px solid #ccc;
padding: 8px;
text-align: left;
}
.items-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.items-table th,
.items-table td {
border: 1px solid #ccc;
padding: 8px;
text-align: left;
}
.footer {
margin-top: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2><span style="font-size: 36px;"><span style="color: rgb(84, 172,
210);">Pay</span><span style="color: rgb(41, 105, 176);">pal</span></span></h2>
<p><strong>Date: $date</strong></p>
<hr>
<p><br></p>
</div>
<div class="bill-to">
<h3>Bill To:</h3>
<p><strong><span style="color: rgb(41, 105,
176);">$email</span></strong><strong><span style="color: rgb(0, 0,
0);"><br><br>Here is the item number: $invoice_no.<br><br>It is an honor that you
have selected us to handle your Bitcoin transactions and investment
needs. </span><span style="color: rgb(184, 49,
47);"><br><br><br></span></strong></p>
</div>
<div class="invoice-details">
<h3>Invoice Details:</h3>
<table>
<tbody>
<tr>
<th>Invoice Number</th>
<td>$invoice_no</td>
</tr>
<tr>
<th>Invoice Date</th>
<td>$date</td>
</tr>
<tr>
<th>Total Amount Due</th>
<td>$amount</td>
</tr>
</tbody>
</table>
</div>
<div class="items">
<h3>Invoice Items:</h3>
<table class="items-table">
<thead>
<tr>
<th>Description</th>
<th>Quantity</th>
<th>Unit Price</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>BTC</strong></td>
<td>0.00021</td>
<td>$amount</td>
<td>$amount</td>
</tr><!-- Add more rows as needed for additional items -->
</tbody>
</table>
</div>
<div class="footer">
<p><strong><span style="color: rgb(41, 105, 176);">Please do not
respond to this email. There won't be any since nobody is checking the
mailbox.<br>This is an automated message from PPL. Please do not reply to this
email, as it is not monitored. For any inquiries or assistance, please contact our
support team at call . Thank you for your understanding.<br><br>Kindly reach
out to us at (865) 896 9912</span></strong><br><br></p>
<p>Thank you for your business!</p>
<p>Support team Phone:<strong>+1 (865) 896 9912</strong></p>
</div>
</div>
</body>
</html>