A Anonymous Guest Apr 30, 2003 #1 Code: mail($email, $subject, $message, "From: noreply$domain <noreply$domain>"); Andrew
A Anonymous Guest May 8, 2003 #2 all info about function you may find at http://www.php.net/manual/en/ about mail http://www.php.net/manual/ru/function.mail.php
all info about function you may find at http://www.php.net/manual/en/ about mail http://www.php.net/manual/ru/function.mail.php
A Anonymous Guest Jun 24, 2003 #3 repeating what bezmond said, but with identified variables. Code: <? $email = "email address you want to send to."; $subject = "they subject of your msg."; $message = "your msg here..."; mail($email, $subject, $message"); ?>
repeating what bezmond said, but with identified variables. Code: <? $email = "email address you want to send to."; $subject = "they subject of your msg."; $message = "your msg here..."; mail($email, $subject, $message"); ?>