我将我的mail()更改为wp_mail()之后,这里没有点击电子邮件是我的代码。
$subject='test mail';
$body = '<table><tr>test</tr></table>';
add_filter( 'wp_mail_content_type', 'set_html_content_type' );
$mail = wp_mail("test@mail.com","$subject", "$body");
remove_filter( 'wp_mail_content_type', 'set_html_content_type' );
function set_html_content_type()
{
return 'text/html';
}
我还通过以下代码进行了测试,它正在打印“没有”#。
if($mail)
{
echo "done";
}
else
{
echo "no";
}