你好@helenyhou:
您可以设置标题,但不能使用参数。WordPress使用"hooks"你需要的钩子是\'wp_mail_from\'
和\'wp_mail_from_name\'
挂钩。
以下是您可以添加到主题的挂钩functions.php
要修改的文件"From:"
使用时的标题wp_mail()
发送至电子邮件地址Helen Hou-Sandi <helenyhou@example.com>
:
add_filter(\'wp_mail_from\',\'yoursite_wp_mail_from\');
function yoursite_wp_mail_from($content_type) {
return \'helenyhou@example.com\';
}
add_filter(\'wp_mail_from_name\',\'yoursite_wp_mail_from_name\');
function yoursite_wp_mail_from_name($name) {
return \'Helen Hou-Sandi\';
}