<% title "Send Message" %>

Send Message

<%= form_for @message do |f| %> <% if @message.errors.any? %>

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

<% end %> <% if @message.program_log %>
<% end %> <%= f.hidden_field :recipient_id %> <% if @message.program_log %> <%= f.hidden_field :program_log_id %> <% end %> <% if params[:to_all] %> <%= hidden_field_tag 'to_all', 'true' %> <% end %> <% if params[:program_id] %> <%= hidden_field_tag 'program_id', params[:program_id] %> <% end %>

<%= f.submit 'Send' %>

<% end %>