salix/print/templates/email/client-welcome/client-welcome.html

92 lines
4.6 KiB
HTML
Raw Normal View History

2019-01-22 08:55:35 +00:00
<!DOCTYPE html>
2020-05-20 14:23:53 +00:00
<html v-bind:lang="$i18n.locale">
2019-01-22 08:55:35 +00:00
<head>
<meta name="viewport" content="width=device-width">
<meta name="format-detection" content="telephone=no">
2019-01-22 08:55:35 +00:00
<title>{{ $t('subject') }}</title>
</head>
<body>
2019-11-11 10:04:49 +00:00
<table class="grid">
<tbody>
<tr>
<td>
<!-- Empty block -->
<div class="grid-row">
<div class="grid-block empty"></div>
</div>
<!-- Header block -->
<div class="grid-row">
<div class="grid-block">
<email-header v-bind="$props"></email-header>
2019-11-11 10:04:49 +00:00
</div>
</div>
<!-- Block -->
<div class="grid-row">
2021-01-18 07:33:20 +00:00
<div class="grid-block vn-pa-ml">
2019-11-11 10:04:49 +00:00
<h1>{{ $t('title') }}</h1>
<p>{{$t('dearClient')}},</p>
<p v-html="$t('clientData')"></p>
<p>
<div>{{$t('clientId')}}: <strong>{{client.id}}</strong></div>
<div>{{$t('user')}}: <strong>{{client.userName}}</strong></div>
<div>{{$t('password')}}: <strong>********</strong>
(<a href="https://verdnatura.es">{{$t('passwordResetText')}}</a>)
</div>
</p>
2019-01-22 08:55:35 +00:00
2019-11-11 10:04:49 +00:00
<h1>{{$t('sections.howToBuy.title')}}</h1>
<p>{{$t('sections.howToBuy.description')}}</p>
<ol>
<li v-for="requeriment in $t('sections.howToBuy.requeriments')">
<span v-html="requeriment"></span>
</li>
</ol>
<p>{{$t('sections.howToBuy.stock')}}</p>
<p>{{$t('sections.howToBuy.delivery')}}</p>
<h1>{{$t('sections.howToPay.title')}}</h1>
<p>{{$t('sections.howToPay.description')}}</p>
<ul>
<li v-for="option in $t('sections.howToPay.options')">
<span v-html="option"></span>
</li>
</ul>
2019-01-22 08:55:35 +00:00
2019-11-11 10:04:49 +00:00
<h1>{{$t('sections.toConsider.title')}}</h1>
<p>{{$t('sections.toConsider.description')}}</p>
2019-01-22 08:55:35 +00:00
2019-11-11 10:04:49 +00:00
<h4>{{$t('sections.claimsPolicy.title')}}</h4>
<p>{{$t('sections.claimsPolicy.description')}}</p>
2019-01-22 08:55:35 +00:00
2019-11-11 10:04:49 +00:00
<p v-html="$t('help')"></p>
<p>
<section v-if="client.salesPersonName">
{{$t('salesPersonName')}}: <strong>{{client.salesPersonName}}</strong>
</section>
<section v-if="client.salesPersonPhone">
{{$t('salesPersonPhone')}}: <strong>{{client.salesPersonPhone}}</strong>
</section>
<section v-if="client.salesPersonEmail">
{{$t('salesPersonEmail')}}:
<strong><a v-bind:href="`mailto: ${client.salesPersonEmail}`" target="_blank">{{client.salesPersonEmail}}</strong>
</section>
</p>
</div>
</div>
<!-- Footer block -->
<div class="grid-row">
<div class="grid-block">
<email-footer v-bind="$props"></email-footer>
2019-11-11 10:04:49 +00:00
</div>
</div>
<!-- Empty block -->
<div class="grid-row">
<div class="grid-block empty"></div>
</div>
</td>
</tr>
</tbody>
</table>
2019-01-22 08:55:35 +00:00
</body>
</html>