web-dev-qa-db-ja.com

メーラーエラー:SMTP接続()がphpメーラーで失敗しました(https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting)

オンラインからたくさん紹介した後、ローカルホストからメールを送信するためのコードは次のとおりです。

htmlフォーム:

<form method="post" action="email.php">
  Email: <input name="email" id="email" type="text" /><br />

  Message:<br />
  <textarea name="message" id="message" rows="15" cols="40"></textarea><br />

  <input type="submit" value="Submit" />
</form>

email.php:

<?php

// $email and $message are the data that is being
// posted to this page from our html contact form
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;

require_once('class.phpmailer.php');
require 'PHPMailerAutoload.php';
require 'class.smtp.php';

$mail = new PHPMailer();
$body='hellooooo';
$mail->IsSMTP();

$mail->Host = "ssl://smtp.gmail.com"; // specify main and backup server

$mail->SMTPAuth = true; // turn on SMTP authentication

$mail->Username = "[email protected]"; // SMTP username
$mail->Password = "zzz"; // SMTP password
$mailer->SMTPSecure = 'ssl';
$mailer->Port = 465;//587;
$mail->AddAddress("xxx", "xx");
$mail->SetFrom('[email protected]','xxxx');
$mail->WordWrap = 50;

$mail->IsHTML(true);

$mail->Subject = "You have received feedback from your website!";

$mail->MsgHTML($body);

if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}

echo "Message has been sent";
?>

したがって、コードを実行すると、次のようなエラーが表示されます。

メッセージを送信できませんでした。

メーラーエラー:SMTPconnect()が失敗しました。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

そして、私はこの行のセミコロンを削除しました;extension=php_openssl.dll以下のファイルから、xamppを再起動します。

c/xampp/Apache/bin/php.ini and c/xampp/php/php.ini

それでも同じエラーのままです。

注:私はphpは初めてですが、これを特定して問題を修正したいと思います。スタックで同様の質問を参照しましたが、役に立ちませんでした。

誰かが私がこれを修正するのを手伝ってくれる?

ありがとう、

3
pcs

認証に接続するための資格情報が失敗したようです。私はよく地元の人からメールを送信しますが、Gmailよりも別のSMTPを使用する方がはるかに簡単であることがわかりました。たとえば mandrillapp 、12,000通のメールまで無料です。あなたのコードには私が理解できないことがたくさんあるので、私は私のことを共有します。

<?php 

require 'PHPMailer-master/PHPMailerAutoload.php';

$mail = new PHPMailer;
//$mail->SMTPDebug = 3;                               // Enable verbose debug output

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.mandrillapp.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = '[email protected]';                 // SMTP username
$mail->Password = 'mandrilapp_will_give_you_a_password';                           // SMTP password
$mail->Port = 587;                                    // TCP port to connect to

$mail->From = '[email protected]';
$mail->FromName = 'Test phpmailer';
$mail->addAddress('[email protected]');               // Name is optional

$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

PHPMailer-masterフォルダー( ここ からダウンロードできます)がphpファイルと同じレベルにあることを確認してください。これが私がphpmailerをリンクする方法です。ご不明な点がございましたら、お役に立てば幸いです。

2