Sha256: a57a50620a41e95e2bdbca24cae2c0c792a9d58032c8fc4e0a3fe2572c0802fb
Contents?: true
Size: 1.32 KB
Versions: 103
Compression:
Stored size: 1.32 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, value: params[:from] %> </div> <div> <%= form.label :to, "To" %><br> <%= form.text_field :to, value: params[:to] %> </div> <div> <%= form.label :cc, "CC" %><br> <%= form.text_field :cc, value: params[:cc] %> </div> <div> <%= form.label :bcc, "BCC" %><br> <%= form.text_field :bcc, value: params[:bcc] %> </div> <div> <%= form.label :x_original_to, "X-Original-To" %><br> <%= form.text_field :x_original_to, value: params[:x_original_to] %> </div> <div> <%= form.label :in_reply_to, "In-Reply-To" %><br> <%= form.text_field :in_reply_to, value: params[:in_reply_to] %> </div> <div> <%= form.label :subject, "Subject" %><br> <%= form.text_field :subject, value: params[:subject] %> </div> <div> <%= form.label :body, "Body" %><br> <%= form.text_area :body, size: "40x20", value: params[:body] %> </div> <div> <%= form.label :attachments, "Attachments" %><br> <%= form.file_field :attachments, multiple: true %> </div> <%= form.submit "Deliver inbound email" %> <% end %>
Version data entries
103 entries across 98 versions & 8 rubygems