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

72 lines
3.0 KiB
HTML
Raw Normal View History

2019-01-22 08:55:35 +00:00
<!DOCTYPE html>
<html lang="es">
<head>
<title>{{ $t('subject') }}</title>
</head>
<body>
<section class="container">
2019-02-06 09:53:12 +00:00
<!-- Header component -->
2019-10-31 11:43:04 +00:00
<email-header :is-preview="isPreview" :locale="locale"></email-header>
2019-02-06 09:53:12 +00:00
<!-- End header component -->
2019-01-22 08:55:35 +00:00
<section class="main">
<!-- Title block -->
<div class="title">
<h1>{{ $t('title') }}</h1>
</div>
<!-- Title block end -->
<p>{{$t('dearClient')}},</p>
<p v-html="$t('clientData')"></p>
<p>
2019-10-29 06:46:44 +00:00
<div>{{$t('clientId')}}: <strong>{{client.id}}</strong></div>
<div>{{$t('user')}}: <strong>{{client.userName}}</strong></div>
2019-01-22 08:55:35 +00:00
<div>{{$t('password')}}: <strong>********</strong>
(<a href="https://verdnatura.es">{{$t('passwordResetText')}}</a>)
</div>
</p>
<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>
<h1>{{$t('sections.toConsider.title')}}</h1>
<p>{{$t('sections.toConsider.description')}}</p>
2019-10-31 11:43:04 +00:00
<h4>{{$t('sections.claimsPolicy.title')}}</h4>
2019-01-22 08:55:35 +00:00
<p>{{$t('sections.claimsPolicy.description')}}</p>
<p v-html="$t('help')"></p>
<p>
2019-10-29 06:46:44 +00:00
<section v-if="client.salesPersonName">
{{$t('salesPersonName')}}: <strong>{{client.salesPersonName}}</strong>
2019-01-22 08:55:35 +00:00
</section>
2019-10-29 06:46:44 +00:00
<section v-if="client.salesPersonPhone">
{{$t('salesPersonPhone')}}: <strong>{{client.salesPersonPhone}}</strong>
2019-01-22 08:55:35 +00:00
</section>
2019-10-29 06:46:44 +00:00
<section v-if="client.salesPersonEmail">
2019-01-22 08:55:35 +00:00
{{$t('salesPersonEmail')}}:
2019-10-29 06:46:44 +00:00
<strong><a v-bind:href="`mailto: ${client.salesPersonEmail}`" target="_blank">{{client.salesPersonEmail}}</strong>
2019-01-22 08:55:35 +00:00
</section>
</p>
</section>
2019-02-06 09:53:12 +00:00
<!-- Footer component -->
2019-10-31 11:43:04 +00:00
<email-footer :is-preview="isPreview" :locale="locale"></email-footer>
2019-02-06 09:53:12 +00:00
<!-- End footer component -->
2019-01-22 08:55:35 +00:00
</section>
</body>
</html>