38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html v-bind:lang="locale">
|
|
<head>
|
|
<title>{{ $t('subject') }}</title>
|
|
</head>
|
|
<body>
|
|
<section class="container">
|
|
<!-- Header component -->
|
|
<email-header
|
|
v-bind:is-preview="isPreview"
|
|
v-bind:locale="locale">
|
|
</email-header>
|
|
<!-- 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>
|
|
|
|
<section>
|
|
<section v-for="attachment in attachments">
|
|
<a href="/api/report/claim-pickup-order?userId=106&claimId=5" target="_blank">Ver PDF</a>
|
|
</section>
|
|
</section>
|
|
</section>
|
|
<!-- Footer component -->
|
|
<email-footer
|
|
v-bind:is-preview="isPreview"
|
|
v-bind:locale="locale">
|
|
</email-footer>
|
|
<!-- End footer component -->
|
|
</section>
|
|
</body>
|
|
</html> |