New Message

<%= form_tag messages_path, :method => :post , :class => "new_message" do %> <% if @receipt and @receipt.errors.any? %>

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

<% end %>
<%= label_tag t('mailboxer.form.recipients') %>
<%= select_tag :_recipients, "", :class => "required form_tag" %>
<%= label_tag t('mailboxer.form.subject') %>
<%= text_field_tag :subject,nil, :class => "required form_tag" %>
<%= label_tag t('mailboxer.form.body') %>
<%= text_area_tag :body, nil,:rows =>6, :cols=> 53, :class => "required form_tag", :maxlength => 5000 %>
<%= submit_tag t('mailboxer.send'), :name => :send_message, :class => "button" %>
<% end %>