web-dev-qa-db-ja.com

Gmailアカウントを使用したXAMPP Sendmail

XAMPPを介してメールを送信するようにSendmailを構成しようとしています。 sendmail.iniには次の設定があります。

# Set default values for all following accounts.

logfile "C:\xampp\sendmail\sendmail.log
account Gmail
tls on
port 587
tls_certcheck off
Host smtp.gmail.com
from [email protected]
auth on
user [email protected]
password mypassword

account default : Gmail

次のようなテストスクリプトを作成しました。

$to = "[email protected]";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$headers = "From: [email protected]" . "\r\n";
if (mail($to, $subject, $body, $headers)) {
    echo ("Message successfully sent!");
} else {
    echo ("Message delivery failed...");
}

メールは送信されたが、届かないログに記録されるというメッセージが表示されます。

sendmail:配信中のエラー:最初にSTARTTLSコマンドを発行する必要があります。

誰が問題がここにあるのか知っていますか?

前もって感謝します!

ガス

18
Gaz

これは私のために働いたものですうまくいけば、他の誰も私がやったようにこれを理解するために油を燃やすことはありません。

これが私のsendmail.iniです

[sendmail]

smtp_server=smtp.gmail.com
smtp_port=25
error_logfile=error.log
debug_logfile=debug.log
[email protected]
auth_password=yourgmailpassword
[email protected]

php/php.ini ----基本的に、sendmail_pathとmail.add_x_headerを除くすべてをコメントアウトします

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

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = postmaster@localhost

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header = Off

; Log all mail() calls including the full path of the script, line #, to address and headers
;mail.log = "C:\xampp\Apache\logs\php_mail.log"

Sendmailファイルを更新した後、これは私にとってはうまくいきました(古いものはsmtpをサポートしていません)

  • http://glob.com.au/sendmail/ に移動し、最新のsendmail Zipファイルを取得します
  • デスクトップに解凍し、\ xampp\sendmailフォルダーにファイルをコピーして、そこにあったすべてのものを置き換えます。
  • 次に、sendmail.iniを開いて、上に示したものをコピーして貼り付けます(最初にそのファイル内のすべてを削除するか、すべてをコメントアウトします!)
  • 注:このためにMercuryサーバーを起動する必要はありません。

この問題が発生したときに、localhostでパスワード回復phpを作成していました。ユーザーにパスワードを送信する必要がありました。 -あなたのPHPはオーケーに見えます

35
braviato

私がしなければならなかったのは、「安全性の低いアプリがアカウントにアクセスすることを許可する」をオンに切り替えることだけでした。これはアプリ固有のパスワードを作成する代替手段だと思います。

https://support.google.com/accounts/answer/6010255 情報

https://www.google.com/settings/security/lesssecureapps スイッチ用

セキュリティのために作業を終えたら、スイッチをオフにする価値があるかもしれません。

3
Dean_Wilson

すでに素晴らしい反応に追加するだけです。 XAMPPを管理者として実行していることを確認してください。それが私にとってそれを修正したものです。

1
Julian

これらは、最新のGoogle SMTPサーバー要件です。

  1. Gmail SMTPサーバーアドレス:smtp.gmail.com
  2. Gmail SMTPパスワード:(Gmailパスワード)
  3. Gmail SMTPポート(TLS):587
  4. Gmail SMTPポート(SSL):465
  5. Gmail SMTP TLS/SSLが必要:はい

Google SMTP要件

SSLを使用する場合、必要なCaptcha検証テストが複雑になるため、SSLが失敗したときにTLSを試行するSSLをautoに設定するだけです。
enter image description here

1
Ryan Santos

a)php.iniの変更ファイルパス「[ドライブ文字]:[XAMPPディレクトリ]\php」でphp.iniを見つけます。例えばC:\ xampp\php\php.ini

検索する sendmail_path php.iniファイルでセミコロン「;」を削除しますその前に[私の道はなかった]。

[mail function]
; For Win32 only.

SMTP = smtp.gmail.com

smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = [your_gmail_username]@gmail.com
sendmail_path = "\"C:\xampplite\sendmail\sendmail.exe\" -t"

b)sendmail.iniの変更ファイルパスでsendmail.iniを見つけます。「[ドライブ文字]:[XAMPPディレクトリ]\sendmail」です。 C:\ xampp\sendmail\sendmail.ini

以下に示すように、「Mercury」および「A free mail service example」の内容にコメントを付けます。

 # Mercury  <br/> 
 #account Mercury  <br/> 
 #Host localhost  <br/> 
 #from postmaster@localhost  <br/> 
 #auth off  <br/> 
 # A freemail service example  <br/> 
 #account Hotmail  <br/> 
 #tls on  <br/> 
 #tls_certcheck off  <br/> 
 #Host smtp.live .com  <br/> 
 #from [exampleuser]@hotmail.com  <br/> 
 #auth on  <br/> 
 #user [exampleuser]@hotmail .com  <br/> 
 #password [examplepassword]  <br/> 

c。 Gmailアカウントを追加します。

例:

account Gmail
tls on 
tls_certcheck off
Host smtp.gmail.com 
 from [your_gmail_username]@gmail.com 
auth on
  account default : Gmail 

d。 Apacheサーバーを再起動します


Gmailを使用しませんでした。ホスティングアカウントを使用しました。その場合は、SMTP設定が正しいことを確認してください。私はsmtp.gmail.comではなくmail.abc.comでした。このコードは2つのWebサイトからのものです。両方のファイルを変更する必要があります。 win200sp4ボックスで実行されるXampp 1.73で動作しています。これら2つのファイルを除くすべてのデフォルト設定。 php.iniおよびsendmail.ini

0
Joe

Gmailを使用する場合、別の問題があります。 Gmailにセキュリティが追加されたため、アプリケーション固有のパスワードを生成する必要があります。通常のGmailアクセスに使用しているパスワードは使用できません。上記の例を試してみて、sendmailフォルダーでエラーログが生成されたことに気づいて、これを発見しました。エラーログで、これを示すメッセージに出会いました。

0
user2554122
THIS IS WHAT YOU SENDMAIL SHOULD LOOK LIKE


[sendmail]

; you must change mail.mydomain.com to your smtp server,
; or to IIS's "pickup" directory.  (generally C:\Inetpub\mailroot\Pickup)
; emails delivered via IIS's pickup directory cause sendmail to
; run quicker, but you won't get error messages back to the calling
; application.

smtp_server=smtp.gmail.com

; smtp port (normally 25)

smtp_port=465

; SMTPS (SSL) support
;   auto = use SSL for port 465, otherwise try to use TLS
;   ssl = always use SSL
;   tls  = always use TLS
;   none = never try to use SSL

smtp_ssl=auto

; the default domain for this server will be read from the registry
; this will be appended to email addresses when one isn't provided
; if you want to override the value in the registry, uncomment and modify

;default_domain=mydomain.com

; log smtp errors to error.log (defaults to same directory as sendmail.exe)
; uncomment to enable logging

error_logfile=error.log

; create debug log as debug.log (defaults to same directory as sendmail.exe)
; uncomment to enable debugging

debug_logfile=debug.log

; if your smtp server requires authentication, modify the following two lines

auth_username=Your Email Here
auth_password=Your Password Here

; if your smtp server uses pop3 before smtp authentication, modify the 
; following three lines.  do not enable unless it is required.

pop3_server=
pop3_username=
pop3_password=

; force the sender to always be the following email address
; this will only affect the "MAIL FROM" command, it won't modify 
; the "From: " header of the message content

force_sender=Your Email Here

; force the sender to always be the following email address
; this will only affect the "RCTP TO" command, it won't modify 
; the "To: " header of the message content

force_recipient=

; sendmail will use your hostname and your default_domain in the ehlo/helo
; smtp greeting.  you can manually set the ehlo/helo name if required

hostname=smtp.gmail.com

THIS IS WHAT YOU PHP.INI FILE SHOULD LOOK LIKE

[mail function]
; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
smtp_server=smtp.gmail.com
smtp_port = 465

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = postmaster@localhost

; XAMPP IMPORTANT NOTE (1): If XAMPP is installed in a base directory with spaces (e.g. c:\program filesC:\xampp) fakemail and mailtodisk do not work correctly.
; XAMPP IMPORTANT NOTE (2): In this case please copy the sendmail or mailtodisk folder in your root folder (e.g. C:\sendmail) and use this for sendmail_path.  
; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"

; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the C:\xampp\mailoutput folder
;sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header=Off
0
Khalid

私はこれが古い投稿であることを知っていますが、以下が私のために働いたという事実を共有すると思いました。

現在、Apache/2.4.9(Win64)PHP/5.5.12およびMySQL 5.6.17を搭載したWindows 7 ENTでWAMPサーバーを使用しています。

私はこのチュートリアルに従いました: http://blog.techwheels.net/send-email-from-localhost-wamp-server-using-sendmail/

0
Bri