+2  A: 

Your sending a plain text email right now - you should correct the header content type of that email.

Just set it to text/html. There might be more information here:

Or google for it, there are plenty of sources out there!

Sebastian Hoitz
How do I do that? Thanks
godleuf
A: 

To add the appropiate headers, see:
http://nl2.php.net/manual/en/function.mail.php
example 4.
This btw is just Sebastian's aswer with a link.

Pim Jager
A: 

The From header line is not correct. There is text outside of the quotes:

From: "{name}" {phone} <{email}> <{message}>

And what's the <{message}> doing there. The only correct format would be:

From: "{name} {phone}" <{email}>

You can't use the message placeholder there because it contains new lines and that will break the mail header.

Basher