Is there a way to send HTML formatted emails with WordPress' wp_mail() function?
Is there an action_hook or something similar that could help me achieve this?
I tried adding markup in a PHP string variable and just fired off an email with the wp_mail()
function like so:
$email_to = '[email protected]';
$email_subject = 'Email subject';
$email_body = "htmlbodyh1Hello World!/h1/body/html";
$send_mail = wp_mail($email_to, $email_subject, $email_body);
But it showed up as plain text?
Any ideas?
Topic html-email wp-mail hooks Wordpress
Category Web