File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/emails/order/cancel_abandoned.blade.php
<?php
$cell = "font-size: 12px; font-family: Arial, sans-serif; line-height: 16px;";
$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;';
?>
@extends('emails.layouts.tops')
@section('title')
{{ Lang::get('emails/order/cancel_abandoned.title') }}
@endsection
@section('content')
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" style="{{ $h2AsCell }}">
<strong>
{{ Lang::get('emails/order/cancel_abandoned.salutation', ['salutation' => Lang::get('form.salutation_' . $invoice_title), 'lastName' => $invoice_full_last_name]) }}
</strong>
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}" width="66%">
{{ Lang::get('emails/order/cancel_abandoned.content.intro', [
'topsName'=> Lang::get('tops.name_without_bv'),
'deliveryTime' => Lang::get('emails/order/cancel_abandoned.del_time.' . $order_delivery_time)
]) }}
</td>
<td style="{{ $pAsCell }}" align="right" valign="top">
{{ Lang::get('emails/order/cancel_abandoned.content.orderNumber') }}<br/>
<span style="color: #00b0ea; font-weight: bold;">
<strong>{{ $order_number or '-' }}</strong>
</span>
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}" colspan="3">{{ Lang::get('emails/order/cancel_abandoned.content.ending') }}</td>
</tr>
<tr>
<td style="{{ $pAsCell }}"
colspan="3">{{ Lang::get('emails/global.signature', ['topsName' => Lang::get('tops.name_without_bv')]) }}</td>
</tr>
</table>
@endsection