繁体   English   中英

邮件功能在Wordpress中不起作用

[英]mail function is not working in 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);
?>

尝试使用wordpress内置函数wp_mail()

文档 http://codex.wordpress.org/Function_Reference/wp_mail

然后机智过滤器可以更改“来自”和“来自名称”

http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from_name

如果这不起作用,那么该检查服务器设置了……

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM