Sha256: 80157726e7b2574bccd237e2ef7dc689980e03ef777279c32b01f6dadcc881d8

Contents?: true

Size: 913 Bytes

Versions: 1

Compression:

Stored size: 913 Bytes

Contents

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

<h1>Deliver new inbound email</h1>

<%= form_with(url: main_app.rails_conductor_inbound_emails_path, scope: :mail, local: true) do |form| %>
  <div>
    <%= form.label :from, "From" %><br>
    <%= form.text_field :from %>
  </div>

  <div>
    <%= form.label :to, "To" %><br>
    <%= form.text_field :to %>
  </div>

  <div>
    <%= form.label :cc, "CC" %><br>
    <%= form.text_field :cc %>
  </div>

  <div>
    <%= form.label :bcc, "BCC" %><br>
    <%= form.text_field :bcc %>
  </div>

  <div>
    <%= form.label :in_reply_to, "In-Reply-To" %><br>
    <%= form.text_field :in_reply_to %>
  </div>

  <div>
    <%= form.label :subject, "Subject" %><br>
    <%= form.text_field :subject %>
  </div>

  <div>
    <%= form.label :body, "Body" %><br>
    <%= form.text_area :body, size: "40x20" %>
  </div>

  <%= form.submit "Deliver inbound email" %>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
actionmailbox-0.1.0 app/views/rails/conductor/action_mailbox/inbound_emails/new.html.erb