我正在使用auto\\u core\\u update\\u电子邮件挂钩修改WordPress发送的自动更新电子邮件。但是,我不知道如何在电子邮件正文中添加换行符。这是我的代码:
function example_filter_auto_update_email($email) {
$email[\'to\'] = array(\'[email protected]\', \'[email protected]\');
$email[\'subject\'] = \'Auto Update\';
$email[\'body\'] = \'Hello,%0D%0A\'
. \'Lorem ipsum.%0D%0A\'
. \'Many thanks,%0D%0A\'
. \'WordPress\';
return $email;
}
add_filter(\'auto_core_update_email\', \'example_filter_auto_update_email\', 1);
我还尝试使用:
<br />
,
\\r\\n
, 以及
%0D%0A
, 见上图。但是,在每种情况下,字符串都会打印在我的电子邮件客户端中,如下所示:
您好%0D%0ALorem Ipsum%0D%0AMany谢谢%0D%0AWordPress
如何在自动更新电子邮件中打印换行符?如果有帮助,电子邮件将通过SMTP发送。
非常感谢!