Quote:
Originally Posted by Dramex
Hi ,
i use "smtp" for mail to my website, and this product doesn't support smtp
any idea ?
===========
السلام عليكم اخوي المتميز
انا استخدم smtp
ولكن المنتج يقوم ارسال الرسائل عن الطريق البي اتش بي
هل من حل ؟
كل الشكر
|
i solved this problem from functions.php
i edit from 939 to 952,
the idea vbmail() use smtp what ever product want
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