Hi!
How can I include CSS styles in a PHP HTML Email?
This is what I have so far-
<?php
$msg='<html>This is a <em>test</em> message</html>';
mail('a@b.com', 'Test HTML Mail',$msg,"From: Santa Claus <santa@gmail.com>\n" .
"MIME-Version: 1.0\n" .
"Content-type: text/html; charset=iso-8859-1");
?>