aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb
blob: 19c53984e202e5dede6e4881fe2116ddb8b60a8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% provide :title, "Deliver new inbound email" %>

<h1>All inbound emails</h1>

<table>
  <tr><th>Message ID</th><th>Status</th></tr>
  <% @inbound_emails.each do |inbound_email| %>
    <tr>
      <td><%= link_to inbound_email.message_id, main_app.rails_conductor_inbound_email_path(inbound_email) %></td>
      <td><%= inbound_email.status %></td>
    </tr>
  <% end %>
</table>

<%= link_to "Deliver new inbound email", main_app.new_rails_conductor_inbound_email_path %>