I have a small issue though, its impossible to add html codes. If I do the codes shows up in the email. Lets say i have this piece of code:
PHP Code:
<?
$reciever = my@email.com;
$subject = test;
$message = this is a <b>test</b>;
mail($reciever, $subject, $message);
?>
The result will be "this is a <b>test</b>", just like i wrote it, not as i want it, what am i doing wrong?
Thanks in advance
Niklas
EDIT: works now, gotta love google :P