<%= form_with(model: message) do |form| %> <% if message.errors.any? %>

<%= pluralize(message.errors.count, "error") %> prohibited this message from being saved:

<% end %>
<%= form.label :token, style: "display: block" %> <%= form.text_field :token %>
<%= form.label :scope, style: "display: block" %> <%= form.text_field :scope %>
<%= form.label :rcpt_to, style: "display: block" %> <%= form.text_field :rcpt_to %>
<%= form.label :mail_from, style: "display: block" %> <%= form.text_field :mail_from %>
<%= form.label :subject, style: "display: block" %> <%= form.text_field :subject %>
<%= form.label :message_id, style: "display: block" %> <%= form.text_field :message_id %>
<%= form.label :timestamp, style: "display: block" %> <%= form.text_field :timestamp %>
<%= form.label :route_id, style: "display: block" %> <%= form.text_field :route_id %>
<%= form.label :domain_id, style: "display: block" %> <%= form.text_field :domain_id %>
<%= form.label :credential_id, style: "display: block" %> <%= form.text_field :credential_id %>
<%= form.label :status, style: "display: block" %> <%= form.text_field :status %>
<%= form.label :held, style: "display: block" %> <%= form.check_box :held %>
<%= form.label :size, style: "display: block" %> <%= form.text_field :size %>
<%= form.label :last_delivery_attempt, style: "display: block" %> <%= form.text_field :last_delivery_attempt %>
<%= form.label :raw_table, style: "display: block" %> <%= form.text_field :raw_table %>
<%= form.label :raw_body_id, style: "display: block" %> <%= form.text_field :raw_body_id %>
<%= form.label :raw_headers_id, style: "display: block" %> <%= form.text_field :raw_headers_id %>
<%= form.label :inspected, style: "display: block" %> <%= form.check_box :inspected %>
<%= form.label :spam, style: "display: block" %> <%= form.check_box :spam %>
<%= form.label :spam_score, style: "display: block" %> <%= form.text_field :spam_score %>
<%= form.label :threat, style: "display: block" %> <%= form.check_box :threat %>
<%= form.label :threat_details, style: "display: block" %> <%= form.text_field :threat_details %>
<%= form.label :bounce, style: "display: block" %> <%= form.check_box :bounce %>
<%= form.label :bounce_for_id, style: "display: block" %> <%= form.text_field :bounce_for_id %>
<%= form.label :tag, style: "display: block" %> <%= form.text_field :tag %>
<%= form.label :loaded, style: "display: block" %> <%= form.text_field :loaded %>
<%= form.label :clicked, style: "display: block" %> <%= form.text_field :clicked %>
<%= form.label :received_with_ssl, style: "display: block" %> <%= form.check_box :received_with_ssl %>
<%= form.label :hold_expiry, style: "display: block" %> <%= form.text_field :hold_expiry %>
<%= form.label :tracked_links, style: "display: block" %> <%= form.number_field :tracked_links %>
<%= form.label :tracked_images, style: "display: block" %> <%= form.number_field :tracked_images %>
<%= form.label :parsed, style: "display: block" %> <%= form.number_field :parsed %>
<%= form.label :endpoint_id, style: "display: block" %> <%= form.text_field :endpoint_id %>
<%= form.label :endpoint_type, style: "display: block" %> <%= form.text_field :endpoint_type %>
<%= form.submit %>
<% end %>