Html version of emails
How can I make my EMAILS HTML instead of just text?
I know I have to uncomment this line: //$headers .= "MIME-Version: 1.0" . PHP_EOL;
But how do I change this to type/html
$headers .= "Content-Type: ". get_option($app_abbr.'_nu_email_type');// . PHP_EOL;
// assemble the header
$headers = "From: $from_name <$from_email>" . PHP_EOL;
$headers .= "Reply-To: $from_name <$from_email>" . PHP_EOL;
//$headers .= "MIME-Version: 1.0" . PHP_EOL;
$headers .= "Content-Type: ". get_option($app_abbr.'_nu_email_type');// . PHP_EOL;