Softaculous


Topic : email SMTP


Posted By: wapumts on April 23, 2017, 3:34 pm
Hello
How do you create an SMTP authenticated email box with webuzo?

Posted By: peopleinside on April 23, 2017, 3:40 pm | Post: 1
Hi,
thank you for your question. Seems different users are asking the same question.

A Webuzo Team member will reply to you as soon as possibile.
Are you a free License user?

You can also doing a Google search for understand how configure SMTP.


-----------------------
PeopleInside  :angel:

Web, security, open source passionate.

Posted By: wapumts on April 23, 2017, 4:13 pm | Post: 2
Hello
a question :
From form by site with phpmailer
Is it normal for a 1 or 2 second delay to send an email with SMTP verification?
The same email, without verification, starts right away but goes spam?
The delay depends on the SMTP server?
Thanks for waiting

Posted By: wapumts on April 23, 2017, 4:15 pm | Post: 3
//Your SMTP servers details

$mail->IsSMTP();              // set mailer to use SMTP
//$mail->IsHTML(true);
$mail->IsHTML(false);
//$mail->SMTPDebug = 0;
//$mail->SMTPKeepAlive = true;
$mail->SMTPSecure = 'ssl';
//$mail->CharSet = 'UTF-8';
$mail->Username = "noreply@domain.com";  // SMTP username
$mail->Password = "xxxxxxxxx"; // SMTP password
//$mail->Host = "ns0.ovh.net";  // specify main and backup server or localhost
$mail->Host = "smtp.domain.com";  // specify main and backup server or localhost
$mail->Port = 5025; // or 587
$mail->SMTPAuth = true;    // turn on SMTP authentication


//$mail->SMTPSecure = 'none';
//$mail->SMTPSecure = false;
//$mail->SMTPAutoTLS = false;

Posted By: peopleinside on April 23, 2017, 4:20 pm | Post: 4
Some delay is normal and not authenticated SMTP email can goes into SPAM


-----------------------
PeopleInside  :angel:

Web, security, open source passionate.

Powered By AEF 1.0.8 © 2007-2008 Electron Inc.