Skip to content

Instantly share code, notes, and snippets.

@bhushanjawle
Created September 22, 2016 13:04
Show Gist options
  • Save bhushanjawle/58c64081a80cc4ed39c057c56c68980d to your computer and use it in GitHub Desktop.
Save bhushanjawle/58c64081a80cc4ed39c057c56c68980d to your computer and use it in GitHub Desktop.
Send HTML email from WordPress
// Taken from http://wordpress.stackexchange.com/questions/27856/is-there-a-way-to-send-html-formatted-emails-with-wordpress-wp-mail-function
$to = 'sendto@example.com';
$subject = 'The subject';
$body = 'The email body content';
$headers = array('Content-Type: text/html; charset=UTF-8');
wp_mail( $to, $subject, $body, $headers );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment