2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00

FIX: Remove html entities from text emails

This commit is contained in:
Robin Ward 2014-10-06 13:57:38 -04:00
parent 55fc54fe69
commit b1271ed44b
2 changed files with 31 additions and 1 deletions

View file

@ -11,6 +11,7 @@ module Email
def text
return @text if @text
@text = (@message.text_part ? @message.text_part : @message).body.to_s.force_encoding('UTF-8')
@text = CGI.unescapeHTML(@text)
end
def html
@ -28,4 +29,4 @@ module Email
end
end
end
end