Sha256: cb0a448c41149a53c86b66c5702bb0fc6f0459382449744da233dcf3859a1f75
Contents?: true
Size: 1.02 KB
Versions: 39
Compression:
Stored size: 1.02 KB
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> <div> <%= form.label :attachments, "Attachments" %><br> <%= form.file_field :attachments, multiple: true %> </div> <%= form.submit "Deliver inbound email" %> <% end %>
Version data entries
39 entries across 39 versions & 4 rubygems