Thursday, January 26, 2012

wp mail content type

<?php

add_filter('wp_mail_content_type','set_content_type');

function set_content_type($content_type){

return 'text/html';

}

?>