ok I made that if somebody adds an entry to a database the users get an email notifiacation:
$MailMsg =
"message etc. etc.
now If I use html tags, they don't format the message, but show up. What do I have to do that I can format the message?
You have to specify that the MIME type of that part of the message is text/html.
how can I do that? do I have to change the following line? $msg .= "Message:\t$_POST[message]\n\n";
I recommend you look in the code library - there's at least one HTML mail library there.