メールの成功またはエラーを示すmail()
コールバックステータス文字列を取得する方法を教えてください。mail()ステータス文字列を取得
私は、電子メールをチェックして、私たちのコードを与えるhttp://verify-email.orgは、以下のように見えるが見つかりました:
MX record about gmail.com exists.
Connection succeeded to alt3.gmail-smtp-in.l.google.com SMTP.
220 mx.google.com ESMTP v81si3039996wma.46 - gsmtp
> HELO verify-email.org
250 mx.google.com at your service
> MAIL FROM: <[email protected]>
=250 2.1.0 OK v81si3039996wma.46 - gsmtp
> RCPT TO: <[email protected]>
=250 2.1.5 OK v81si3039996wma.46 - gsmtp
私が何を考えて:いずれかを使用してverify-email.org
場合
<?php
$msg = "This is message";
$status = mail("[email protected]","Subject",$msg);
echo $status; //Nothing outputs here
?>
(また教えてください他のプログラミング言語)
素敵な一日を! PHPで
あなたのコードで 'var_dump($ status_;')をあなたのコードに入れて投稿してください。 – scottevans93
'mail()'は電子メールを送ることができればtrueを返し、そうでなければfalseを返します。 – Xatenev