次のコードを実行するのに苦労しています。
$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
電子メールを受信しました。
何が起こっている可能性がありますか、それとももっと言えば...何が欠けていますか?