Created
September 22, 2016 13:04
-
-
Save bhushanjawle/58c64081a80cc4ed39c057c56c68980d to your computer and use it in GitHub Desktop.
Send HTML email from WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Taken from http://wordpress.stackexchange.com/questions/27856/is-there-a-way-to-send-html-formatted-emails-with-wordpress-wp-mail-function | |
$to = '[email protected]'; | |
$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