mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 22:34:04 +00:00
Update readme and fix button title
This commit is contained in:
parent
98c71bf455
commit
004e97d59b
2 changed files with 2 additions and 1 deletions
|
@ -27,6 +27,7 @@ server will start on port 8025.
|
||||||
* Release messages to real SMTP servers
|
* Release messages to real SMTP servers
|
||||||
* HTTP API to list, retrieve and delete messages
|
* HTTP API to list, retrieve and delete messages
|
||||||
* Multipart MIME support
|
* Multipart MIME support
|
||||||
|
* Download individual MIME parts
|
||||||
* In-memory message storage
|
* In-memory message storage
|
||||||
* MongoDB storage for message persistence
|
* MongoDB storage for message persistence
|
||||||
* Lightweight and portable
|
* Lightweight and portable
|
||||||
|
|
|
@ -181,7 +181,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<button class="btn btn-xs btn-default" title="Delete" ng-click="deleteOne(message)"><span class="glyphicon glyphicon-remove"></span></button>
|
<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>
|
<button class="btn btn-xs btn-default" title="Release" ng-click="releaseOne(message)"><span class="glyphicon glyphicon-share"></span></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue