<% 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 :cc, "CC" %>
<%= form.text_field :cc %>
<%= form.label :bcc, "BCC" %>
<%= form.text_field :bcc %>
<%= form.label :in_reply_to, "In-Reply-To" %>
<%= form.text_field :in_reply_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 %>