Problem with mail!!

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
Code:
mail($email, $subject, $message, "From: noreply$domain <noreply$domain>");

Andrew
 
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
 
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");
?>
 
Back
Top