pull/104/merge
José Proença 2014-06-23 08:53:52 +00:00
commit f086e6de41
1 changed files with 5 additions and 0 deletions

View File

@ -388,6 +388,11 @@ function psm_build_mail($from_name = null, $from_email = null) {
$phpmailer->IsSMTP();
$phpmailer->Host = psm_get_conf('email_smtp_host');
$phpmailer->Port = psm_get_conf('email_smtp_port');
if ($phpmailer->Port == 587) {
$phpmailer->SMTPSecure = 'tls';
} else if ($phpmailer->Port == 465) {
$phpmailer->SMTPSecure = 'ssl';
}
$smtp_user = psm_get_conf('email_smtp_username');
$smtp_pass = psm_get_conf('email_smtp_password');