22 lines
699 B
HTML
22 lines
699 B
HTML
<email-body v-bind="$props">
|
|
<div class="grid-row">
|
|
<div class="grid-block vn-pa-ml">
|
|
<h1>{{ $t('title') }}</h1>
|
|
<p>{{$t('description.dear')}},</p>
|
|
<div v-html="$t('description.instructions')"></div>
|
|
<p>{{$t('description.conclusion')}}</p>
|
|
</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>
|
|
</email-body>
|