Quote:
Originally Posted by djbaxter
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.
|
I hope that is it. I've had no luck getting a bounce-related plugin to function.
Peace,
Gene Steinberg