This commit is contained in:
Torsten Schulz
2023-06-16 11:57:49 +02:00
commit 44da93c0e9
328 changed files with 134580 additions and 0 deletions

29
templates/mail.html Normal file
View File

@@ -0,0 +1,29 @@
<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>