hey all,
the phpmail function is used in the php scripting for sending mail from the php code . the actuall script is
<?php
$to = "somebody@example.com";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From:
webmaster@example.com" . "\r\n" .
"CC:
somebodyelse@example.com";
mail($to,$subject,$txt,$headers);
?>
is this a complete code to send mail from the script ?