邮件功能在wordpress中不起作用

时间:2014-05-14 13:10:46

标签: php wordpress

我已经使用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);
?>

1 个答案:

答案 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

如果这不起作用,那么是时候检查服务器设置......