mirror of
https://github.com/jhillyerd/inbucket.git
synced 2026-01-27 05:25:58 +00:00
Add a controller to view list mailbox contents, view individual
messages.
This commit is contained in:
18
app/views/Mailbox/Show.html
Normal file
18
app/views/Mailbox/Show.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{{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" .}}
|
||||
|
||||
Reference in New Issue
Block a user