salix/print/templates/email/printer-setup/printer-setup.html

49 lines
1.9 KiB
HTML
Raw Normal View History

2022-11-10 10:51:14 +00:00
<email-body v-bind="$props">
2022-11-10 08:51:28 +00:00
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<h1>{{ $t('title') }}</h1>
<p>{{$t('description.dear')}},</p>
<p>{{$t('description.instructions')}}</p>
<p v-html="$t('description.followGuide')"></p>
<p v-html="$t('description.downloadFrom')"></p>
<p v-html="$t('description.downloadDriver')"></p>
2019-01-22 08:55:35 +00:00
2023-03-01 10:43:07 +00:00
<h1>{{$t('sections.GoLabel.title')}}</h1>
<p>{{$t('sections.GoLabel.description')}}:</p>
2022-11-10 08:51:28 +00:00
<ol>
2023-03-01 10:43:07 +00:00
<li v-for="step in $t('sections.GoLabel.steps')">
2022-11-10 08:51:28 +00:00
<span v-html="step"></span>
</li>
</ol>
</div>
</div>
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<h1>{{$t('sections.help.title')}}</h1>
<p>{{$t('sections.help.description')}}</p>
<p v-html="$t('sections.help.remoteSupport')"></p>
</div>
</div>
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<div v-if="client.salesPersonName">
{{$t('salesPersonName')}}: <strong>{{client.salesPersonName}}</strong>
</div>
<div v-if="client.salesPersonPhone">
{{$t('salesPersonPhone')}}: <strong>{{client.salesPersonPhone}}</strong>
</div>
<div v-if="client.salesPersonEmail">
{{$t('salesPersonEmail')}}:
<strong><a v-bind:href="`mailto:${client.salesPersonEmail}`"
target="_blank">{{client.salesPersonEmail}}</strong>
</div>
</div>
</div>
<div class="grid-row" v-if="isPreview">
<div class="grid-block vn-pa-ml">
<attachment v-for="attachment in attachments" v-bind:key="attachment.filename"
v-bind:attachment="attachment" v-bind:args="$props">
</attachment>
</div>
</div>
2022-11-10 10:51:14 +00:00
</email-body>