mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-28 08:40:41 +01:00
Fix invio email (variabile host errata)
This commit is contained in:
parent
7cd4e5fa26
commit
5357976462
@ -175,7 +175,7 @@ class Mail extends PHPMailer\PHPMailer\PHPMailer
|
||||
// Preparazione email
|
||||
$this->IsHTML(true);
|
||||
|
||||
if (!empty($config['host'])) {
|
||||
if (!empty($config['server'])) {
|
||||
$this->IsSMTP(true);
|
||||
|
||||
// Impostazioni di debug
|
||||
@ -185,7 +185,7 @@ class Mail extends PHPMailer\PHPMailer\PHPMailer
|
||||
};
|
||||
|
||||
// Impostazioni dell'host
|
||||
$this->Host = $config['host'];
|
||||
$this->Host = $config['server'];
|
||||
$this->Port = $config['port'];
|
||||
|
||||
// Impostazioni di autenticazione
|
||||
|
Loading…
Reference in New Issue
Block a user