我試圖發送HTML郵件與WordPress的功能wp_mail()這樣的:CSS將無法正常工作
add_filter('wp_mail_content_type', function($content_type) { return 'text/html'; });
$headers = 'From: '. $current_user->user_firstname . ' ' . $current_user->user_lastname .' <'. $current_user->user_email .'>' . "\r\n";
wp_mail($_POST['email'], $_POST['subject'], $_POST['mail_text'], $headers);
remove_filter('wp_mail_content_type', 'set_html_content_type');
所有的HTML標籤,如<strong>
,<li>
,<p>
等與HTML格式。但是當我嘗試使用HTML或CSS(如<li style="color:red">Word</li>
或<li color="red">Word</li>
)更改顏色時,它不起作用,並顯示爲空白文本。
我在做什麼錯?