aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2018-12-26 11:02:59 -0500
committerGitHub <noreply@github.com>2018-12-26 11:02:59 -0500
commit9b35b9ff417e8ec9888deac1e66c2855677164cd (patch)
tree82dc9a20a23b855f91f743c5029ec7a97a35b824 /actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb
parentb5ed468492387d42a44ca6af525d4a274cda756d (diff)
parenta5b2fff64ca0c1fa7be5124f40a251d991c10a85 (diff)
downloadrails-9b35b9ff417e8ec9888deac1e66c2855677164cd.tar.gz
rails-9b35b9ff417e8ec9888deac1e66c2855677164cd.tar.bz2
rails-9b35b9ff417e8ec9888deac1e66c2855677164cd.zip
Merge pull request #34786 from georgeclaghorn/actionmailbox
Import Action Mailbox
Diffstat (limited to 'actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb')
-rw-r--r--actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb15
1 files changed, 15 insertions, 0 deletions
diff --git a/actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb b/actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb
new file mode 100644
index 0000000000..19c53984e2
--- /dev/null
+++ b/actionmailbox/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb
@@ -0,0 +1,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 %> \ No newline at end of file