I have this code at the top of my email php file which sends out emails
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: $from <$from>" . "\r\n";
$headers .= 'Cc: matt.e@posnation.com' . "\r\n";
$headers .= 'Bcc: posnation@gmail.com' . "\r\n";
I need to change this to just a plain text email …what do i change. I was thinking the second line text/html to text/text but i wasnt sure
You want to change the “text/html” to “text/plain”.