工作對我來說這是我的模板代碼,它是不是在WordPress的發送郵件給客戶。請任何人都幫我做出正確的代碼。謝謝wp_mail()是不是在WordPress
<?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) –