Quote:
Originally Posted by C Braithwaite
reupload the php file - it was a bug in the coding.
|
I'll retry in a moment - got an error saying I couldn't access the download here.
By the way, I have the EZ Bounce add-on installed for other forum emails. For some reason, it didn't work with the bounced emails generated by your add-on. I made it work via the following edits to remindermail.php:
Find:
Code:
$headers .= "To: $username <$email>" . "\r\n";
$headers .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";
Add after:
Code:
$bounceurl = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $userid;
$bouncestring = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
$headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter;
NOTE: This will fail unless you have the EZ Bounce add-on installed. It's a quick way to automatically uncheck "Receive emails from admin" for invalid email addresses, which you are invariably going to get eventually using this inactive users add-on.