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 -->
|
|
|
|
|
2019-02-20 08:29:14 +00:00
|
|
|
<p>{{ $t('sections.introduction.title') }},</p>
|
2019-01-22 08:55:35 +00:00
|
|
|
<p>{{ $t('sections.introduction.description') }}</p>
|
|
|
|
<p>{{ $t('sections.introduction.terms') }}</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{{ $t('sections.payMethod.description') }}:
|
|
|
|
<ol>
|
|
|
|
<li v-for="option in $t('sections.payMethod.options')">
|
|
|
|
{{ option }}
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{{ $t('sections.legalAction.description') }}:
|
|
|
|
<ol type="a">
|
|
|
|
<li v-for="option in $t('sections.legalAction.options')">
|
|
|
|
{{ option }}
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p v-html="$t('contactPhone')"></p>
|
|
|
|
<p v-html="$t('conclusion')"></p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<div class="row">
|
2019-11-04 12:55:20 +00:00
|
|
|
<div class="text">{{debtor.bankName}}</div>
|
|
|
|
<div class="control">{{debtor.iban}}</div>
|
2019-01-22 08:55:35 +00:00
|
|
|
<div class="description">
|
|
|
|
<div class="line"><span>{{$t('transferAccount') }}</span></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</p>
|
2019-11-04 12:55:20 +00:00
|
|
|
|
2019-11-07 10:19:05 +00:00
|
|
|
<setion v-if="isPreview">
|
|
|
|
<attachment v-for="attachment in attachments"
|
|
|
|
v-bind:attachment="attachment"
|
|
|
|
v-bind:args="$props">
|
|
|
|
</attachment>
|
|
|
|
</setion>
|
2019-01-22 08:55:35 +00:00
|
|
|
</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>
|