Nu har jeg pørvet følgende men den sender ikke :S
send.php
--------
<?php
/* recipients */
$to = " $til_mail " . ", " ; // note the comma
$to .= " $til_mail ";
/* subject */
$subject = " $fra_emne";
/* message */
$message = ' $fra_besked ';
/* To send HTML mail, you can set the Content-type header. */
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
/* additional headers */
$headers .= "To: $til_navn <$til_mail>\r\n";
$headers .= "From: $fra_navn <$fra_mail\r\n";
$headers .= "Cc: $fra_cc \r\n";
$headers .= "Bcc: $fra_bcc \n";
/* and now mail it */
mail($to, $subject, $message, $headers);
?>
-------
form.htm
-------
http://www.rtk-design.dk/rod/php/form.htm
mvh. Rune Thougaard
--