前提・実現したいこと
phpmailerでメール送信ができないので、考えられる原因を教えてほしいです。
他サーバでのメール送信のみ。エラーを吐かず、長時間読みこみしてフリーズしてしまいます。
メールサーバ側の設定なのでしょうか。
PHP Version 7.4.7
phpmailer 6.4.0
mailserver mail16.conoha.ne.jp
発生している問題・エラーメッセージ
フリーズ
該当のソースコード
php
1//PHPMailerの使用 2 $this->mailer = new PHPMailer(true); //Passing `true` enables exceptions 3 4 //Server settings 5 $this->mailer->CharSet = 'UTF-8'; 6 $this->mailer->SMTPDebug = 0; // Enable verbose debug output 7 $this->mailer->isSMTP(); // Set mailer to use SMTP 8 $this->mailer->Host = MAIL_HOST; // Specify main and backup SMTP servers 9 $this->mailer->SMTPAuth = true; // Enable SMTP authentication 10 $this->mailer->Username = MAIL_USERNAME; // SMTP username 11 $this->mailer->Password = MAIL_PASSWORD; // SMTP password 12 // $this->mailer->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;// Enable TLS encryption, `ssl` also accepted 13 $this->mailer->SMTPSecure = MAIL_ENCRPT; //ssl 14 $this->mailer->Port = SMTP_PORT; // TCP port to connect to (ssl:465) 15 $this->mailer->SMTPOptions = array( 16 'ssl' => array( 17 'verify_peer' => false, 18 'verify_peer_name' => false, 19 'allow_self_signed' => true 20 ) 21 );
php
1 2define('MAIL_HOST', 'mail16.conoha.ne.jp'); //Host 3define('MAIL_USERNAME', 'xxxx@xxxxxxx.jp'); //Username 4define('MAIL_PASSWORD', "xxxxxxx"); //Password 5//送信者アドレス 6define('FROM_MAIL', "xxxx@xxxxxxx.jp"); 7define('MAIL_ENCRPT', 'SSL'); //tls 8define('SMTP_PORT', '465'); //Port 9
試したこと
ポート番号をtls 587、ssl 465と変えてみた
一度tls465と謎なことをしてしまった際、SMTP Error: Could not authenticate.とエラーが出たので、少なからず接続はできている模様。
回答1件
あなたの回答
tips
プレビュー