25

ローカルでホストされているphpコードを介してメールを送信したいと思います。

<?php 
$email  = "myemail@local.com"; 
$titre   = "My subject"; 
$message = "Text message !"; 
mail($email, $titre, $message); 
?>

このコードを実行すると、次のエラーが発生します。

Warning: mail() [<a href='function.mail'>function.mail</a>]: Failed to connect to mailserver at &quot;localhost&quot; port 25, verify your &quot;SMTP&quot; and &quot;smtp_port&quot; setting in php.ini or use ini_set() in C:\...

php.iniファイルを調べましたが、すでに適切に構成されているようです。

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25

どうすればこれを修正できますか?

ありがとうございました

4

5 に答える 5

13

localhost:25メールサーバーに使用するように構成されています。

エラーメッセージは、に接続できないことを示していますlocalhost:25

したがって、2つのオプションがあります。

  1. ローカルホストポート25にSMTPサーバーをインストール/適切に構成する
  2. 接続できる他のSMTPサーバーを指すように構成を変更します
于 2013-03-07T09:31:02.293 に答える
6

私はこれに何時間も費やしました。以前はエラーが発生しませんでしたが、メールは送信されませんでした。最後に私は解決策を見つけました、そしてそれを共有したいと思います。

<?php
include 'nav.php';
/*
    Download PhpMailer from the following link:
    https://github.com/Synchro/PHPMailer (CLick on Download zip on the right side)
    Extract the PHPMailer-master folder into your xampp->htdocs folder
    Make changes in the following code and its done :-)

    You will receive the mail with the name Root User.
    To change the name, go to class.phpmailer.php file in your PHPMailer-master folder,
    And change the name here: 
    public $FromName = 'Root User';
*/
require("PHPMailer-master/PHPMailerAutoload.php"); //or select the proper destination for this file if your page is in some   //other folder
ini_set("SMTP","ssl://smtp.gmail.com"); 
ini_set("smtp_port","465"); //No further need to edit your configuration files.
$mail = new PHPMailer();
$mail->SMTPAuth = true;
$mail->Host = "smtp.gmail.com"; // SMTP server
$mail->SMTPSecure = "ssl";
$mail->Username = "trials.php@gmail.com"; //account with which you want to send mail. Or use this account. i dont care :-P
$mail->Password = "trials.php.php"; //this account's password.
$mail->Port = "465";
$mail->isSMTP();  // telling the class to use SMTP
$rec1="trials.php@gmail.com"; //receiver. email addresses to which u want to send the mail.
$mail->AddAddress($rec1);
$mail->Subject  = "Eventbook";
$mail->Body     = "Hello hi, testing";
$mail->WordWrap = 200;
if(!$mail->Send()) {
echo 'Message was not sent!.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo  //Fill in the document.location thing
'<script type="text/javascript">
                        if(confirm("Your mail has been sent"))
                        document.location = "/";
        </script>';
}
?>
于 2013-11-03T15:55:08.263 に答える
5

これを行うには、ローカルメールサーバーをインストールする必要があります。外部のメールアドレスに送信したい場合は、不要なメールになってしまうか、まったく届かない場合があります。

私が使用している優れたメールサーバー(Linuxで使用していますが、Windowsでも使用できます)はAxigenです: http ://www.axigen.com/mail-server/download/

それをインストールするには、メールサーバーの経験が必要かもしれませんが、それが機能すると、それを使ってやりたいことが何でもできます。

于 2013-03-07T09:32:05.820 に答える
1

これを試して

ini_set("SMTP","aspmx.l.google.com");
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers .= "From: test@gmail.com" . "\r\n";
mail("email@domain.com","test subject","test body",$headers);
于 2013-03-07T09:30:53.820 に答える
0

ここに私の例を含めた重いライブラリを使用せずに電子メールを送信することは可能です。

PHP用の軽量SMTPメール送信者

https://github.com/Nerdtrix/EZMAIL

本番環境と開発環境の両方でテストされています。

そして最も重要なのは、IPがサーバーによってブラックリストに登録されていない限り、電子メールがスパムに送信されないことです。

乾杯。

于 2020-12-04T21:42:09.780 に答える