Elastic email requires their own unsubscription tag ...

Open apps/common/components/helpers/StringHelper and make the decodeSurroundingTags() method look like:
PHP:
public static function decodeSurroundingTags($content)
{
    return str_replace(
        array(urlencode('['), urlencode(']'), urlencode('|'), urlencode('{'), urlencode('}')),
        array('[', ']', '|', '{', '}'),
        $content
    );
}
That should do the trick for now.
 
Back
Top