Hi. Fantastic system. For my outlook, there needs to be a space before and after the url so that in text format it's recognised as a clickable url.
In the following, note the added spaces before and after the $bounceurl
Plugin: EZ Bounce Management - construct code, in the mail_send position
was
HTML Code:
$bouncestring = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
Now
HTML Code:
$bouncestring = "<a href=\"$bounceurl\" target=\"_blank\"> $bounceurl </a>";