0

sendmail エラー ログに次のエラーが表示されます。

13.05.17 22:33:23 : Must issue a STARTTLS command first. x41sm21034997eey.17 - gsmtp<EOL>
13.05.17 23:02:55 : Must issue a STARTTLS command first. m48sm20850393eeh.16 - gsmtp<EOL>
13.05.17 23:08:05 : Must issue a STARTTLS command first. bn53sm21242331eeb.7 - gsmtp<EOL>
13.05.17 23:43:54 : Must issue a STARTTLS command first. x41sm21511836eey.17 - gsmtp<EOL>
13.05.18 00:07:17 : Must issue a STARTTLS command first. w52sm21617356eev.12 - gsmtp<EOL>
13.05.18 03:03:16 : Must issue a STARTTLS command first. e50sm22561955eev.13 - gsmtp<EOL>
13.05.18 20:28:20 : Must issue a STARTTLS command first. d10sm3967825wik.0 - gsmtp<EOL>
13.05.19 05:14:31 : Must issue a STARTTLS command first. dj7sm5901394wib.6 - gsmtp<EOL>

そして私の sendMail ファイル:

[センドメール]

smtp_server=smtp.gmail.com
smtp_port=587
error_logfile=error.log
debug_logfile=debug.log
auth_username=artemkller@gmail.com
auth_password=hidepass
force_sender=artemkller@gmail.com

私のコード:

mail
(
    $email,
    'Driptone - Activate your account',
    'Hello '.$username.'. you must activate your account before
    you can start using your account.
    You can activate your account by clicking on the following link:
    http://localhost/drip/activate.php?u='.$this->get['user_id'].'&a='.$this->get['generated_code'].'
    Thank you,
    Driptone.',
    'From: noreply@driptone.com'
);

これの何が問題なのですか?以前は機能していましたが、現在は機能していませんか?

4

1 に答える 1

0

これは、gmail が安全な (TLS) サーバーを使用してスパムを防止しているためです。

PHP インストールが SSL をサポートしていることを確認してください ( の出力で「openssl」セクションを探しますphpinfo())。

で次の設定を行うことができますPHP.ini

ini_set("SMTP","ssl://smtp.gmail.com");
ini_set("smtp_port","587");

また、上記の方法が役に立たない場合は、ここで解決策を見つけることができます。

于 2013-05-19T02:29:46.667 に答える