Edit outgoing message

<%= error_messages_for 'outgoing_message' %> <% form_tag '../update_outgoing/' + @outgoing_message.id.to_s do %>


<%= text_area 'outgoing_message', 'body', :rows => 10, :cols => 60 %>

Note: This is mainly to be used to excise information that users inadvertently put in their messages, not realising it would be public. It will already have been sent to the public authority, and their reply may also include that information and be automatically published on this site.

You could also use this to edit a message before resending it, but only the edited version will be shown on the public page if you do that.

<%= submit_tag 'Save', :accesskey => 's' %>

<% end %>

<%= link_to 'Show', '../show/' + @outgoing_message.info_request.id.to_s %> | <%= link_to 'List all', '../list' %>