Just a simple code to show you how to send an HTML email!
PHP Example :
<?php
// Recipients. You can send it to more than 1 person!
$to = "you1 <you@yoursite.com>" . ", " ; // note the comma
$to .= "you2 <you2@yoursite.com>";
// This is the email subject
$my_subject = "My first HTML message!";
// Message
$my_message = '
<html>
<head>
<title>My first HTML message!</title>
</head>
<body>
<table>
<tr>
<td>Hi! Just to say i can now send html mail :p</td>
</tr>
<tr>
<td>Do you like it!? C ya</td>
</tr>
</table>
</body>
</html>
';
// To send HTML mail, you can set the Content-type header.
$my_headers = "MIME-Version: 1.0rn";
$my_headers .= "Content-type: text/html; charset=iso-8859-1rn";
// Setting additional headers
$my_headers .= "From: HTML mail <example@example.com>rn";