Sha256: f99ede44968561f5953dd2818769f198706a50a38300b5f6b0b4b6e1bd8bdbc9

Contents?: true

Size: 704 Bytes

Versions: 1

Compression:

Stored size: 704 Bytes

Contents

<h1>Development e-mails captured:</h1>

<table>
  <tr>
    <th>Sent at</th>
    <th>From</th>
    <th>To</th>
    <th>Subject</th>
    <th></th>
  </tr>
  <% for mail in @mails do -%>
    <tr>
      <td><%= mail.created_at.in_time_zone %></td>
      <td><%= mail.from.join(", ") %></td>
      <td><%= mail.to.join(", ") %></td>
      <td><%= mail.subject %></td>
      <td><%= link_to "Details", development_mail_path(mail) %>, 
        <%= link_to "Delete", development_mail_path(mail), :confirm => 'Are you sure?', :method => :delete %>
      </td>
    </tr>
  <% end -%>
</table>

<%= link_to "Clear", clear_development_mails_path,
  :confirm => "Are you sure? This will remove all stored emails." %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devmail-0.0.1 app/views/devmail/development_mails/index.html.erb