Quote:
Originally Posted by BadgerDog
Ok, I need some clarification please...
I installed this mod without a problem on v3.6.7PL1....
I use another mod that sends out emails from the AdminCP (I think) to inactive members and it works well, but I've now received 3 bounces from bad mailboxes.
However, I don't see any of the above demo screens and I can't find any EZ-Bounce link in any of the emails that were returned to me with the "Mail Delivery Subsystem" error?
I don't use the usergroup "move" option at all....
Thanks
Regards,
Badger
|
If you are using Inactive Users Reminder Email:
1. Version 1.11 uses the vBulletin mail queue and should have the headers. However, 1.11 is buggy - consider it beta. I recommend you uninstall it and install version 1.09.
2. If using version 1.09, open remindermail.php and find:
PHP Code:
$headers .= "To: $username <$email>" . "\r\n";
$headers .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";
Add below:
PHP Code:
// add EZBounce headers
$bounceurl = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $userid;
$bouncestring = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
$headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter;