Here is the quick article about to explain How to Change WordPress Email Content Types To HTML.Wordpress has a function wp_mail to send mail from the site and by default the content type of wp_mail function is text/plain.
To change the content type of mail function, you need to filter the content type before used for WordPress.
In Web development or website, most important is to show user actual time other wise users get confused.
Let’s understand the code:
1 2 3 4 5 6 7 | function wp_set_content_type(){ return "text/html"; } |
you can add the filter when you require or before you call function wp_mail and remove after
calling a wp_mail function using below code.
1 2 3 | remove_filter( 'wp_mail_content_type','wp_set_content_type' ); |
That’s it.Now you can send mail 🙂
Thank you for reading.Feel free to share your thoughts! Don’t Forget to Follow us on Twitter or Subscribe us to Get the Latest Updates.