Update readme and fix button title

This commit is contained in:
Ian Kent 2014-04-27 20:02:36 +01:00
parent 98c71bf455
commit 004e97d59b
2 changed files with 2 additions and 1 deletions

View file

@ -27,6 +27,7 @@ server will start on port 8025.
* Release messages to real SMTP servers
* HTTP API to list, retrieve and delete messages
* Multipart MIME support
* Download individual MIME parts
* In-memory message storage
* MongoDB storage for message persistence
* Lightweight and portable

View file

@ -181,7 +181,7 @@
</td>
<td>
<button class="btn btn-xs btn-default" title="Delete" ng-click="deleteOne(message)"><span class="glyphicon glyphicon-remove"></span></button>
<a class="btn btn-xs btn-default" title="Delete" href="/api/v1/messages/{{ message.Id }}/download"><span class="glyphicon glyphicon-save"></span></a>
<a class="btn btn-xs btn-default" title="Download" href="/api/v1/messages/{{ message.Id }}/download"><span class="glyphicon glyphicon-save"></span></a>
<button class="btn btn-xs btn-default" title="Release" ng-click="releaseOne(message)"><span class="glyphicon glyphicon-share"></span></button>
</td>
</tr>