![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/resources/views/emails/customer/ |
<!doctype html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Order Confirmation</title> <link rel="stylesheet" href="{{asset('https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css')}}"> <style type="text/css"> img { width:50%;} </style> </head> <body> <section class="container"> <div> <p><img src="{{ asset('/public/img/images_uploaded/'.$website_setting->header_logo)}}" alt="{{ config('app.name') }}" /></p> </div> <div class="col-md-12"> <h2>Hello {{$customer_name}},</h2> <p>This is a confirmation that your order has been delivered.</p> <h2>ORDER DELIVERED</h2> <p><strong>Order Date:</strong> {{ date('d/m/Y h:i a', strtotime($order_date)) }}<br /> <strong>Delivery Date:</strong> {{ date('d/m/Y') }}<br /> <strong>Total Amount:</strong> {{ config('cart.currency_symbol') }}{{ number_format($final_amount, 2)}}</p> <p>If you have any questions about this order, you can simply send us an email with your questions and we will get back to you shortly with an answer. You can access a printable invoice by logging into your account or by viewing the attached pdf.</p> <p>Thanks again for your business, we appreciate that you've chosen us.</p> <p>Kind Regards,<br> Support Team<br> {{ config('app.name') }}</p> <p>Confidentiality Warning: - The Contents of this email and any attachment are the property of {{ config('app.name') }} and is for the use only of the intended recipient. It may contain confidential information and/or material that is privileged. If it has come to you in error, you should not take any action based upon it, and you should not copy it, distribute it or show it to anyone. In such a case, please telephone {{ config('app.name') }} immediately on (01) 8412606 and delete it from your system.</p> </div> </section> </body> </html>