Это мой код.Я хотел бы знать, почему электронное письмо не отправляется.
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'vendor/phpmailer/phpmailer/src/Exception.php';
require 'vendor/phpmailer/phpmailer/src/PHPMailer.php';
require 'vendor/phpmailer/phpmailer/src/SMTP.php';
$messaggio = new PHPmailer();
$messaggio->isSMTP();
//settiamo su true il metodo che indica alla classe
//il formato HTML
$messaggio->IsHTML(true);
$messaggio->Charset = 'UTF-8';
$messaggio->Host='mail.example.com';
$messaggio->SMTPSecure = '';
$messaggio->SMTPAuth = true;
$messaggio->Username = 'webmaster@example.com';
$messaggio->Password = 'AM19720306*';
$messaggio->Port = 25;
//intestazioni e corpo dell'email
$messaggio->From='webmaster@example.com';
$messaggio->FromName = "Webmaster";
$messaggio->AddAddress('amaranga72@hotmail.com');
$messaggio->AddReplyTo('webmaster@example.it');
$messaggio->Subject='Benvenuto Nel Nostro Sito';
//inseriamo i tag HTML e i CSS per formattare il messaggio
$messaggio->Body = '<html><body><head><style>';
$messaggio->Body .= '.up{background-color:#FF0000;color:#000000;font- size:12px;font-weight:bold}';
$messaggio->Body .= '.down{color:#FF0000;text-align:left;font-size:12px}';
$messaggio->Body .= '</style></head>';
$messaggio->Body .= '<img '
. 'src="/http://localhost/home/albertyno/NetBeansProjects/PhpMail/TecnoLogo2Rid.gif.jpg" alt="logo TS"/>';
$messaggio->Body .= '<center><table><tr><td class="up">Buongiorno Utente</td></tr>';
$messaggio->Body .= '<tr><td class="down">ciao!!!</td></tr></table></center>';
$messaggio->Body .= '<table><tr><td style="font-weight:bold">Alberto Marangoni</td></tr>';
$messaggio->Body .= '<tr><td>Via Manzoni, 9</td></tr>';
$messaggio->Body .= '<tr><td>20080 Vermezzo (MI)</td></tr>';
$messaggio->Body .= '<tr><td>Tel.: 0248403353</td></tr>';
$messaggio->Body .= '<tr><td>Fax : 0248400342</td></tr>';
$messaggio->Body .= '<tr><td>Cell: 327.......</td></tr>';
$messaggio->Body .= '<tr><td>Email: alberto-marangoni@tecno02.com</td></tr>';
$messaggio->Body .= '</body></html>';
//parte relativa all'invio
if(!$messaggio->Send()){
echo $messaggio->ErrorInfo;
}else{
echo 'Email inviata correttamente!';
}
Я использую postfix и phpmailer.
Что я делаю не так?