Aurangajeb

Send-Receive WP Mail as HTML format

Oct 10th, 2020
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /*Method - 1*/
  2. add_filter( 'wp_mail_content_type', function($content_type){
  3. return "text/html";
  4. });
  5.  
  6. /*Method - 2*/
  7. remove_filter( 'wp_mail_content_type', 'set_html_content_type' );
  8. add_filter( 'wp_mail_content_type', 'set_html_content_type' );
  9. function set_html_content_type() {
  10.  
  11.     return 'text/html';
  12. }
Advertisement
Add Comment
Please, Sign In to add comment