15 lines
528 B
HTML
15 lines
528 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.instructions')}}</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> |