私はPHPのメーラーでのSMTP接続に関する問題に直面していますが、ここに私のコード実際にメーラーエラー:SMTP connect()に失敗しましたか?
<?php
// Import PHPMailer classes into the global namespace
// These must be at the top of your script, not inside a function
//Load composer's autoloader
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
require 'Exception.php';
require 'PHPMailer.php';
require 'SMTP.php';
$mail = new PHPMailer(true); // Passing `true` enables exceptions
try {
//Server settings
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '[email protected]'; // SMTP username
$mail->Password = 'password'; // SMTP password
$mail->SMTPSecure = 'ssl'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465; // TCP port to connect to
//Recipients
$mail->setFrom('[email protected]', 'mine');
$mail->addAddress('[email protected]', 'mine'); // Add a recipient
$mail->addReplyTo('[email protected]', 'mine');
//Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = $_POST['name'];
$mail->Body = $_POST['mail']."<br>" .$_POST['phn']."<br>".$_POST['des'];
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
$mail->send();
echo 'Message has been sent';echo "<br>";`enter code here`
echo "<a href=index.html>Go Back";
} catch (Exception $e) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
}
?>
このコードは完璧に実行していたと私はメールを得ていたが、現在はそれが仕事とメーラーエラーを言っていないです:SMTP接続します()これはエラーとして失敗しました。助けて !!!
おかげで...
あなたは、ポート465が開いていることをホストに確認することができますか? –
ポート465を開いてSMTPとして割り当てたことを除いて、ポート587を使用してみてください。 –
ポート465のチェック方法は開いているかどうか? – lexicn