EmailService now has Twig render email messages in safe mode.
I don't think this is really a bug as it's intended behaviour, but this is causing me a pretty big issue because my email layout has code in it like:
{% set contactDetails = craft.globals.getSetByHandle('contactDetails') -%}
But I think safe mode now means that the craft variable isn't actually available. I can pass it in manually when I'm sending non-standard emails with craft()->emails->sendEmail(), but has anyone found a way around this for the built-in ones like the activation/verification emails?