Quote:
Originally Posted by Dramex
PHP Code:
if ($vbulletin->options['usemailqueue'] AND !$notsubscription) { $mail =& new vB_SmtpMail($vbulletin); // $mail =& vB_QueueMail::fetch_instance(); } else if ($vbulletin->options['use_smtp']) { $mail =& new vB_SmtpMail($vbulletin); } else { $mail =& new vB_SmtpMail($vbulletin); // $mail =& new vB_Mail($vbulletin); }
and i got massages
i put // before previous codes
|
Why just no to disable email queue in vBulletin options?
This is what
Code:
$vbulletin->options['usemailqueue']
checks.
If the check is false then you go to next
Code:
else if ($vbulletin->options['use_smtp'])
which doest the same one.