File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/emails/order/received.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/received.title') }}
@endsection
@section('content')
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" style="{{ $h2AsCell }}">
<strong>
{{ Lang::get('emails/order/received.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/received.content.intro', [
'topsName'=> Lang::get('tops.name_without_bv'),
'deliveryTime' => Lang::get('emails/order/received.del_time.' . $order_delivery_time)
]) }}
</td>
<td style="{{ $pAsCell }}" align="right" valign="top">
{{ Lang::get('emails/order/received.content.orderNumber') }}<br/>
<span style="color: #00b0ea; font-weight: bold;">
<strong>{{ $order_number or '-' }}</strong>
</span>
</td>
</tr>
@if($order['customer']['username'] != $order['customer']['email'])
<tr>
<td style="{{ $pAsCell }}" colspan="2">
@lang('emails/order/received.content.activate_account_2')
<a style="color: #00b0ea;" href="https://{{$_SERVER['SERVER_NAME']}}/{{ Shop::getPageService()->page('createAccountFromOrder')->route . '?token='.$order['order_token']}}">
@lang('emails/order/received.content.activate_account_link')
</a>
{{--{{Lang::get(,['link'=> HTML::link(Shop::getPageService()->page('createAccountFromOrder')->route.'?token='.$order['order_token'], Lang::get('emails/order/received.content.activate_account_link'), array('style' => 'color:#00b0ea;')) ])}}.--}}
<br/>
<br/>
</td>
</tr>
@endif
<tr>
<td colspan="2">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
{{--invoice--}}
<td style="{{ $pAsCell }}" width="50%">
<strong>{{ Lang::get('emails/order/received.content.invoiceAddress') }}</strong><br/>
{{ $invoice_full_address }}
</td>
{{--Shipping--}}
<td style="{{ $pAsCell }}" width="50%">
<strong>{{ Lang::get('emails/order/received.content.shippingAddress') }}</strong><br/>
@if(isset($dpd_carrier_shop_id) && $dpd_carrier_shop_id != null )
{{ $dpd_full_information }}
@else
{{ $shipping_full_address }}
@endif
</td>
</tr>
{{--Remarks--}}
@if(!empty($remarks))
<tr>
<td style="{{ $pAsCell }}" colspan="=2">
<strong>{{ Lang::get('emails/order/received.content.remarks') }}</strong><br/>
{{$remarks}}
</td>
</tr>
@endif
</table>
@include('emails/order/overview/orderOverview')
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}" colspan="3">{{ Lang::get('emails/order/received.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