我已经使用PHP定制了我的WordPress并在WordPress中包含了一些PHP文件有模板但邮件功能不起作用请帮助我
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail($to, $subject, $ip, $headers);
?>
答案 0 :(得分:0)
尝试使用wordpress内置函数wp_mail()
<强>文档强> http://codex.wordpress.org/Function_Reference/wp_mail
然后使用过滤器,您可以更改“from”和“from name”
http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from_name
如果这不起作用,那么是时候检查服务器设置......