2019-01-22 08:55:35 +00:00
|
|
|
<!DOCTYPE html>
|
2019-11-04 12:55:20 +00:00
|
|
|
<html v-bind:lang="locale">
|
2019-01-22 08:55:35 +00:00
|
|
|
<head>
|
|
|
|
<title>{{ $t('subject') }}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<section class="container">
|
|
|
|
<!-- Header component -->
|
2019-11-04 12:55:20 +00:00
|
|
|
<email-header
|
|
|
|
v-bind:is-preview="isPreview"
|
|
|
|
v-bind:locale="locale">
|
|
|
|
</email-header>
|
2019-01-22 08:55:35 +00:00
|
|
|
<!-- End header component -->
|
|
|
|
<section class="main">
|
|
|
|
<!-- Title block -->
|
|
|
|
<div class="title">
|
|
|
|
<h1>{{ $t('title') }}</h1>
|
|
|
|
</div>
|
|
|
|
<!-- Title block end -->
|
|
|
|
|
|
|
|
<p>{{$t('description.dear')}},</p>
|
|
|
|
<p>{{$t('description.instructions')}}</p>
|
|
|
|
<p v-html="$t('description.followGuide')"></p>
|
|
|
|
<p v-html="$t('description.downloadFrom')"></p>
|
|
|
|
|
|
|
|
<h1>{{$t('sections.QLabel.title')}}</h1>
|
|
|
|
<p>{{$t('sections.QLabel.description')}}:</p>
|
|
|
|
<ol>
|
|
|
|
<li v-for="step in $t('sections.QLabel.steps')">
|
|
|
|
<span v-html="step"></span>
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
<!-- Help section -->
|
|
|
|
<h1>{{$t('sections.help.title')}}</h1>
|
|
|
|
<p>{{$t('sections.help.description')}}</p>
|
|
|
|
<p v-html="$t('sections.help.remoteSupport')"></p>
|
|
|
|
<!-- End help section-->
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<!-- Footer component -->
|
2019-11-04 12:55:20 +00:00
|
|
|
<email-footer
|
|
|
|
v-bind:is-preview="isPreview"
|
|
|
|
v-bind:locale="locale">
|
|
|
|
</email-footer>
|
2019-01-22 08:55:35 +00:00
|
|
|
<!-- End footer component -->
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|