Quote:
Originally Posted by genesteinberg
Quote:
Originally Posted by djbaxter
Use the EZ Bounce Manager add-on. It works well in combination with this one.
|
I would find that -- where?
All I can find in 3.7 mod is something called Auto Bounce Messages Management, which doesn't work very well.
Peace,
Gene
|
Sorry - I was offline for a while. See
https://vborg.vbsupport.ru/showthread.php?t=138884 - it's a vB 3.6x add-on but works well in my installation of 3.72 PL2.
With some add-ons, you need to edit the PHP file to add the EZ Bounce headers. Let me know if that's the case for you using the new version of this add-on but what you need to add will look something like this...
Find in product-remindermail.xml:
Code:
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers .= "To: $username <$email>" . "\r\n";
$headers .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";
Add below:
Code:
$bounceurl = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $userid;
$bouncestring = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
$headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter;
Save and then reinstall the product from your Admin CP, using overwrite.