File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/emails/order/open.blade.php
<?php
$pAsCell = 'font-size: 12px; font-family: Arial, sans-serif; line-height: 16px; padding-bottom: 12px;';
$h2AsCell = 'font-size: 20px; font-family: Arial, sans-serif; line-height: 24px; padding-bottom: 20px; font-weight:bold; color: #00b0ea;';
$btnStyling = 'color: white; text-decoration: none; display: inline-block; padding: 10px 15px; background-color: rgb(51, 183, 255); border-radius: 4px; margin-top: 5px; box-sizing: border-box;';
?>
@extends('emails.layouts.tops')
@section('title')
{{ Lang::get('emails/order/open.title', ['orderNumber' => $order_number]) }}
@endsection
{{ Shop::getPageService()->boot() }}
@section('content')
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="{{ $h2AsCell }}">
{{ Lang::get('emails/order/open.title', ['orderNumber' => $order_number]) }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
{{ Lang::get('emails/order/open.content') }}
<div><!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{ $pay_url }}" style="height:40px;v-text-anchor:middle;width:240px;" arcsize="10%" strokecolor="#33b7ff" fillcolor="#33b7ff">
<w:anchorlock/>
<center style="color:#ffffff;font-family:sans-serif;font-size:13px;font-weight:bold;">{{ Lang::get('emails/order/open.complete') }}</center>
</v:roundrect>
<![endif]--><a href="{{ $pay_url }}"
style="background-color:#33b7ff;border:1px solid #33b7ff;border-radius:4px;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:13px;font-weight:bold;line-height:40px;text-align:center;text-decoration:none;width:240px;-webkit-text-size-adjust:none;mso-hide:all;">{{ Lang::get('emails/order/open.complete') }}</a></div>
{{ Lang::get('emails/order/open.content-close') }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">{{ Lang::get('emails/global.signature', ['topsName' => Lang::get('tops.name_without_bv')]) }}</td>
</tr>
</table>
@endsection