<% provide :title, "Deliver new inbound email" %>

Deliver new inbound email

<%= form_with(url: main_app.rails_conductor_inbound_emails_path, scope: :mail, local: true) do |form| %>
<%= form.label :from, "From" %>
<%= form.text_field :from %>
<%= form.label :to, "To" %>
<%= form.text_field :to %>
<%= form.label :subject, "Subject" %>
<%= form.text_field :subject %>
<%= form.label :body, "Body" %>
<%= form.text_area :body, size: "40x20" %>
<%= form.submit "Deliver inbound email" %> <% end %>