Is there a way to send HTML formatted emails with WordPress’ wp_mail() function?
from wp_mail codex page: The default content type is ‘text/plain’ which does not allow using HTML. However, you can set the content type of the email by using the ‘wp_mail_content_type’ filter. // In theme’s functions.php or plug-in code: function wpse27856_set_content_type(){ return “text/html”; } add_filter( ‘wp_mail_content_type’,’wpse27856_set_content_type’ );