Files
fvsjs/templates/mail.html
Torsten Schulz 44da93c0e9 initial
2023-06-16 11:57:49 +02:00

30 lines
786 B
HTML

<a href="emailinbox">Zurück zum Posteingang</a><br/>
<a href="savemail?type=content&uid={{uid}}">Email-Text als Datei speichern</a> (Der Betreff wird als Dateiname verwendet, wenn noch nicht vorhanden. Ansonsten wird ein Ergänzung vorgesetzt.)<br/><br/>
<table class="form">
<tbody>
<tr>
<th>Von</th>
<td>{{sender}}</td>
</tr>
<tr>
<th>An</th>
<td>{{receiver}}</td>
</tr>
<tr>
<th>Datum</th>
<td>{{senddate}}</td>
</tr>
<tr>
<th>Betreff</th>
<td>{{subject}}</td>
</tr>
</tbody>
</table>
<div class="emailbody">
{{emailbody}}
</div>
<div class="emailattachments">
<h2>Anhänge</h2>
{{attachments}}
</div>