0

次のコードを実行するのに苦労しています。

$name = 'Kevin';
$company = 'nonw';
$website = 'none';
$email = 'my@email.com';
$phone = 'none';
$message = 'Just a test message.';

$message = "<ul>
            <li><strong>From:</strong> $name</li>
            <li><strong>Company:</strong> $company</li>
            <li><strong>Website:</strong> $website</li>
            <li><strong>Email:</strong> $email</li>
            <li><strong>Phone:</strong> $phone</li>
        </ul>
        <p>$message</p>";

$subject = '[' . $sitename . '] New contact message from ' . $name . ' ( ' . $email . ' )';

$headers = 'From: ' . $sitename . ' <' . $to . '>\r\nReply-To: ' . $email . '\r\n';

$s = mail($subject, $message, $email, $to);
if($s){
echo '<div class="msg">Your message has been sent.  Thank you for contacting us, someone will be in touch soon.</div>';
}else{
echo '<div class="err">There was an error sending your message.  Please try again later.</div>';
print_r(error_get_last());
}

私はphp.iniにこれを持っています:

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = me@example.com

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = "/usr/sbin/sendmail -t -i -f my@email.com"

また試してみました:

sendmail_path = "/usr/sbin/sendmail -t -i"

これをサーバー上で直接実行して、サーバーが電子メールを送信するように正しくセットアップされていることを確認し、echo "test" | mail -s "test mail" my@email.com電子メールを受信しました。

何が起こっている可能性がありますか、それとももっと言えば...何が欠けていますか?

4

1 に答える 1

0

ごめんなさいみんな。mailconfig.ini のスペルが間違っていました

に変更"/urs/sbin/sendmail -t -i -f my@email.com"すると"/usr/sbin/sendmail -t -i -f my@email.com"、トリックが実行されました

于 2013-03-29T18:38:00.130 に答える