Skip to content

Instantly share code, notes, and snippets.

View bhushanjawle's full-sized avatar

Bhushan Jawle bhushanjawle

View GitHub Profile
@bhushanjawle
bhushanjawle / HTML email from WordPress
Created September 22, 2016 13:04
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 );