私は100-200のメールをユーザーに送信する必要がありますが、すべてのメールにはそれぞれのユーザーごとに異なるトークンがあります。私はgodaddyでホストされた電子メールを持っています。Phpメーラーエラー - Godaddy Smtp
私はphpmailerを使用してメールを送信しようとしていました。以下は、私がテストしているスクリプトですが、このエラーが表示され続けます。 -
SMTPエラー:サーバへの接続に失敗しました:Connection refused(111) SMTP connect()が失敗しました。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting メーラーエラー:SMTP connect()に失敗しました。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
<?php
//SMTP needs accurate times, and the PHP time zone MUST be set
//This should be done in your php.ini, but this is how to do it if you don't have access to that
date_default_timezone_set('Etc/UTC');
require 'mailm/PHPMailerAutoload.php';
//Create a new PHPMailer instance
$mail = new PHPMailer();
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
$mail->DKIM_domain = '127.0.0.1';
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = "smtpout.secureserver.net";
//Set the SMTP port number - likely to be 25, 465 or 587
$mail->Port = 465;
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication
$mail->Username = "[email protected]";
//Password to use for SMTP authentication
$mail->Password = "Mypassword";
$mail->SMTPSecure = 'ssl';
//Set who the message is to be sent from
$mail->setFrom('[email protected]', 'IT Helpdesk');
//Set an alternative reply-to address
//$mail->addReplyTo('[email protected]', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('[email protected]', 'IT Helpdesk');
//Set the subject line
$mail->Subject = 'PHPMailer SMTP test';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
//Replace the plain text body with one created manually
$mail->Body = 'This is a plain-text message body';
//Attach an image file
//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
私はブログで発見した、このスクリプトを実行します。
私の目的は私のgodaddy電子メールアカウントから200個の電子メールを送信することですが、すべての電子メールにはデータベースからフェッチされ、メール本文に挿入されてユーザーに送信される個別のトークンがあります。とても簡単です
が、それは問題は特定のコードに関連していない私には聞こえますが、それは、「SMTP認証」に関連しています。 SMTP接続が確立され、メールサーバーが正しくセットアップされていることをどのように確認しましたか? – Farside
GoDaddy認証の問題の他に、[wth PHPMailerで提供されているメーリングリストの例](https://github.com/PHPMailer/PHPMailer/blob/master/examples/mailing_list.phps)に基づいてコードを作成してください。 – Synchro