31 lines
1.3 KiB
PHP
Executable File
31 lines
1.3 KiB
PHP
Executable File
<!-- email_template.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Order Confirmed</title>
|
|
</head>
|
|
<body>
|
|
<div style='border: 1px solid #ccc; padding: 20px; border-radius: 10px;'>
|
|
<h1 style='font-size: 24px; color: #4CAF50; margin-bottom: 10px;'>Order Confirmed</h1>
|
|
<p style='font-size: 18px; margin-bottom: 20px;'>Thank you for your order! Your invoice has been successfully approved.</p>
|
|
<strong>Order Details:</strong>
|
|
$lineitem_html
|
|
<ul>
|
|
<li>Order Date: $approval_date</li>
|
|
<li>Confirmed By: $approved_by</li>
|
|
<li>Order Reference ID: $reference_number</li>
|
|
</ul>
|
|
<!-- Download Invoice Button -->
|
|
<a href='" . base_url("download-invoice/$invoice_id") . "' style='display: inline-block; padding: 10px; background-color: #4CAF50; color: #fff; text-decoration: none; border-radius: 5px; margin-top: 20px;'>Download Invoice</a>
|
|
<br>
|
|
<p>Thank you for choosing us!</p>
|
|
<ul style='list-style: none;'>
|
|
<li>$business_name,</li>
|
|
<li>$business_address $business_city $business_state - $business_postal_code</li>
|
|
<li>Call Us: +91 $business_mobile_no</li>
|
|
<li>Email Us: $business_email</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|