我有一个WordPress网站,我对用户创建帐户后收到的电子邮件有异议。
用户收到的电子邮件如下所示:https://tinyurl.com/y45bgy5z
电子邮件中没有格式、段落或换行符等。我已尝试通过为wp\\u new\\u user\\u notification\\u电子邮件添加筛选器来修复此问题,但没有成功:我已尝试使用以下方法修复此问题:
add_filter(\'wp_new_user_notification_email\', \'tpkcs_welcome_email\', 10, 3);
function tpkcs_welcome_email($wp_new_user_notification_email, $user, $blogname)
{
$wp_new_user_notification_email[\'headers\'] = \'Content-Type: text/html; charset=UTF-8\';
return $wp_new_user_notification_email;
}
我也尝试过:
// Add content Type to emial template
function kcss_set_content_type(){
return "text/html";
}
add_filter( \'wp_mail_content_type\',\'kcss_set_content_type\' );
但这些过滤器/操作都不起作用。