1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-28 15:07:05 +00:00
Files
go-inbucket/app/views/Mailbox/Show.html
James Hillyerd a0ab84abb5 Message list is now loaded by AJAX and can be refreshed.
Added a message delete button.
2012-10-13 14:11:12 -07:00

19 lines
402 B
HTML

<div id="emailActions">
<a href="javascript:deleteMessage('{{.message.Id}}');">Delete</a>
<a href="javascript:messageSource('{{.message.Id}}');">Source</a>
</div>
<table id="emailHeader">
<tr>
<th>From:</th>
<td>{{.message.From}}</td>
</tr>
<tr>
<th>Date:</th>
<td>{{.message.Date}}</td>
</tr>
<table>
<h3 id="emailSubject">{{.message.Subject}}</h3>
<pre id="emailBody">{{.body}}</pre>