Html tags not working in wordpress wp_mail


Please find below code to accept HTML tags

add_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );

wp_mail(’email ID’, “Subject”, $message);
remove_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );

function set_html_content_type() {
return ‘text/html’;
}

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s