diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-02-26 14:17:58 +1100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-02-27 06:28:29 -0800 |
commit | a0ded883ac3e6f623ccb66316ed9c3e7a398bdca (patch) | |
tree | 88791d8cb43fd569812babd7202a585e521ef837 | |
parent | 6930cd39d8d6656b687f5e09fffa8018aa5786d5 (diff) |
Don't escape text of outgoing emails
-rw-r--r-- | app/views/outgoing_mailer/followup.rhtml | 4 | ||||
-rw-r--r-- | app/views/outgoing_mailer/initial_request.rhtml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/outgoing_mailer/followup.rhtml b/app/views/outgoing_mailer/followup.rhtml index 7050a295b..049ebc881 100644 --- a/app/views/outgoing_mailer/followup.rhtml +++ b/app/views/outgoing_mailer/followup.rhtml @@ -1,6 +1,6 @@ -<%= @outgoing_message.body.strip %> +<%= raw @outgoing_message.body.strip %> -<%= @outgoing_message.quoted_part_to_append_to_email.strip %> +<%= raw @outgoing_message.quoted_part_to_append_to_email.strip %> ------------------------------------------------------------------- <%= _('Please use this email address for all replies to this request:')%> diff --git a/app/views/outgoing_mailer/initial_request.rhtml b/app/views/outgoing_mailer/initial_request.rhtml index d537a20bc..5c418ecc7 100644 --- a/app/views/outgoing_mailer/initial_request.rhtml +++ b/app/views/outgoing_mailer/initial_request.rhtml @@ -1,4 +1,4 @@ -<%= @outgoing_message.body.strip %> +<%= raw @outgoing_message.body.strip %> ------------------------------------------------------------------- |