File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/emails/customer/verify.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;';
?>
@extends('emails.layouts.tops')
@section('title')
{{ Lang::get('emails/customer/verify.title',['topsName' => Lang::get('tops.name_without_bv')]) }}
@endsection
@section('content')
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="{{ $h2AsCell }}">
{{ Lang::get('emails/customer/verify.title',['topsName' => Lang::get('tops.name_without_bv')]) }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
{{ Lang::get('emails/customer/verify.content.intro',['topsName' => Lang::get('tops.name_without_bv')]) }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
<a href="{{ url( Shop::getPageService()->page('customer')->route . '/validate?token=' . $validate_token) }}">
{{ url( Shop::getPageService()->page('customer')->route . '/validate?token=' . $validate_token) }}
</a>
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
{{ Lang::get('emails/customer/verify.content.middle',['urlAccount' => url( Shop::getPageService()->page('customer')->route) ]) }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
{{ Lang::get('emails/customer/verify.content.username', ['email'=> $email]) }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
{{ Lang::get('emails/customer/verify.content.footer') }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">{{Lang::get('emails/global.signature',['topsName' => Lang::get('tops.name_without_bv')]) }}</td>
</tr>
</table>
@endsection