SMTP TLS auth - for example Amazon SES
parent
16906708ad
commit
d5c3e36432
|
@ -400,6 +400,7 @@ function psm_build_mail($from_name = null, $from_email = null) {
|
||||||
|
|
||||||
if($smtp_user != '' && $smtp_pass != '') {
|
if($smtp_user != '' && $smtp_pass != '') {
|
||||||
$phpmailer->SMTPAuth = true;
|
$phpmailer->SMTPAuth = true;
|
||||||
|
$phpmailer->SMTPSecure = "tls";
|
||||||
$phpmailer->Username = $smtp_user;
|
$phpmailer->Username = $smtp_user;
|
||||||
$phpmailer->Password = $smtp_pass;
|
$phpmailer->Password = $smtp_pass;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue