HTML Mail

To send an HTML mail, you need to change the content type in the header.
<!DOCTYPE html><html><head></head>
<body><?php

mail("fragment_shader@yahoo.com",
        "Test 2",
        "This is a <b>HTML mail</b>.".
           "<img src=http://www.example.com/image.gif>",
        "MIME-Version: 1.0 \n".
           "Content-type: text/html; charset=iso-8859-1 \n");

?> </body></html>