I am sending a long HTML email via php\'s mail function on my localhost. It is consistently getting cut off and I can\'t figure out why.
Here\'s the code producing t
Check your mail() method, it should include your content-type, like:
content-type
mail($email, 'Thank You for Contacting PHPglue', $msg, "From: PHPglue@PHPglue.com\r\ncontent-type: text/html");