1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-02 09:27:06 +00:00
Files
go-inbucket/app/views/Mailbox/Show.html
2012-10-10 13:46:03 -07:00

19 lines
247 B
HTML

{{template "header.html" .}}
<h1>{{.message.Subject}}</h1>
<table>
<tr>
<th>From:</th>
<td>{{.message.From}}</td>
</tr>
<tr>
<th>Date:</th>
<td>{{.message.Date}}</td>
</tr>
<table>
<pre>{{.body}}</pre>
{{template "footer.html" .}}