2010-10-24 20:51:17 -04:00
|
|
|
!!!
|
|
|
|
%html
|
|
|
|
%head
|
|
|
|
%title MailCatcher
|
2010-10-27 15:12:26 -04:00
|
|
|
%link{:rel => "stylesheet", :href => "/stylesheets/application.css"}
|
|
|
|
%script{:src => "/javascripts/jquery.js"}
|
|
|
|
%script{:src => "/javascripts/application.js"}
|
2010-10-24 20:51:17 -04:00
|
|
|
:javascript
|
2010-10-27 15:12:26 -04:00
|
|
|
$(MailCatcher.init);
|
2010-10-24 20:51:17 -04:00
|
|
|
%body
|
|
|
|
#mail
|
|
|
|
%table
|
|
|
|
%thead
|
|
|
|
%th From
|
|
|
|
%th To
|
|
|
|
%th Subject
|
|
|
|
%th Received
|
|
|
|
%tbody
|
|
|
|
#message
|
|
|
|
.metadata
|
|
|
|
.received
|
|
|
|
%label Received
|
|
|
|
%span
|
|
|
|
.from
|
|
|
|
%label From
|
|
|
|
%span
|
|
|
|
.to
|
|
|
|
%label To
|
|
|
|
%span
|
|
|
|
.subject
|
|
|
|
%label Subject
|
|
|
|
%span
|
|
|
|
.attachments
|
|
|
|
%label Attachments
|
|
|
|
%ul
|
|
|
|
.formats
|
|
|
|
%ul
|
|
|
|
%li.selected{'data-message-format' => 'html'} HTML
|
2010-10-27 15:12:26 -04:00
|
|
|
%li{'data-message-format' => 'plain'} Plain Text
|
|
|
|
%li{'data-message-format' => 'source'} Source
|
2010-10-24 20:51:17 -04:00
|
|
|
%iframe
|