Hello,

My site uses UTF-8 encoding, but the notification emails are sent with ISO-8859-1 encoding. This causes &nbsp characters to be rendered as � in my Thunderbird email client.

Thanks a lot!

Comments

rich.3po’s picture

Version: 6.x-1.3 » 6.x-1.4

I'm also suffering from this in the latest version of watcher (1.4). The call to html_entity_decode() bombs out when encountering a  

The problem can be solved by passing 'UTF-8' as a third param to the function call, ie:

$body = html_entity_decode(strip_tags(filter_xss($qmsg->message)), ENT_QUOTES, 'UTF-8');
(line 2398 of watcher.module)

This needs to also be applied to the email subject

Can this be rolled into the next release?

Cheers