Sha256: 8170379a99fb6f289b43d1ecb33aef2d2e1b32d736af77a3c3211698ca5311e1

Contents?: true

Size: 464 Bytes

Versions: 1

Compression:

Stored size: 464 Bytes

Contents

<%= link_to "Back to app", main_app.root_path if main_app.respond_to?(:root_path) %>

<h1>Sent Emails</h1>
<%= button_to "Clear all", clear_path, method: :delete, data: {turbo_confirm: "Are you sure?"} %>

<% if @emails.any? %>
  <ul>
    <% @emails.each do |email| %>
      <li><%= link_to email.subject, message_path(email.message_id) %> - <%= l email.date, format: :long %></li>
    <% end %>
  </ul>
<% else %>
  <p>You have not sent any emails.</p>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mailbin-0.1.0 app/views/mailbin/messages/index.html.erb