これは私のテンプレートコードで、ワードプレスの顧客にメールを送信しません。誰でもこのコードを正しく作成する手助けをしてください。ありがとうワードプレスでwp_mail()が動作しません
<?php
/*
Template name: contact
*/
get_header();
$email="[email protected]";
$subject="testing";
$message = "hi this is test";
$headers = 'From:' . "[email protected]";
if(wp_mail($email, $subject, $message, $headers))
{
echo "sending mail test";
}
else
{
echo "not";
}
get_footer();
?>
はあなたがPHPのログファイルへのアクセス権を持っていますか(ホスティング)に問題があることができますか? [ログファイルの検索方法](https://stackoverflow.com/questions/5127838/where-does-php-store-the-error-log-php5-apache-fastcgi-cpanel) –