File "order_artwork_reminder.blade.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/resources/views/admin/mails/order_artwork_reminder.blade.php
File size: 2.56 KB
MIME-type: text/html
Charset: utf-8
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<title>Artwork Approval Request</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<p style="text-align: center;">
<img src="{{asset('images/jm-logo.png')}}" alt="{{config('app.name')}}" width="200">
</p>
<p style="text-align: center; font-size: 25px">
ACTION REQUIRED - Please approve your artwork for order #{{$data['order_number']}}
</p>
<h3>Dear {{$data['user']->name ?? ""}},</h3>
<p>
Your Artwork is ready to view.
</p>
@if(array_key_exists("templates", $data) && count($data["templates"]) > 0)
<p>Please see your Artwork in the link below:</p>
<ul style="padding: 0">
@foreach($data["templates"] as $template)
{!! $template !!}
@endforeach
</ul>
@endif
<p>
Accuracy is ultimately the customers responsibility. Please proof read all details carefully. Once you are ready
click the link below to approve your artwork. If changes are necessary, please respond to this email.
</p>
<p style="text-align: center; font-size: 25px">
<strong><a href="https://form.jotform.com/233046478692061" style="text-decoration: underline;color: blue">CLICK HERE TO APPROVE ARTWORK</a></strong>
</p>
<p>Let us know if you have any questions, we are here to help!</p>
<p>
Warm regards, <br />
{{config('app.name')}} <br />
<a href="tel:{{$data['company_phone_1']}}">{{$data['company_phone_1']}}</a> <br>
<a href="tel:{{$data['company_phone_2']}}">{{$data['company_phone_2']}}</a>
</p>
<p style="text-align: center; background-color: #117283; color: white;">Copyrights ©
2007-{{now()->format('Y')}} J & M Trophies, All Rights Reserved | Powered by ClickySoft</p>
</div>
</div>
</div>
</body>
</html>