home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 May / PCWorld_2007-05_cd.bin / komunikace / alleycode / alleycodesetup.exe / {app} / PHP / mail.php < prev    next >
Encoding:
PHP Script  |  2002-11-19  |  435 b   |  17 lines

  1. <?php
  2.  
  3. // Update variables as needed...
  4.  
  5. $mail_to ="someone@yourdomain.com";
  6. $mail_subject = "Hi there!";
  7. $mail_body = "Nice to see you are practicing
  8. your PHP. Btw don't forget to look 
  9. in our help section for more tips";
  10.  
  11. if(mail($mail_to, $mail_subject, $mail_body)){
  12.    echo "Successfully sent the e-mail \"$mail_subject\" to $mail_to.";
  13.    } else {
  14.        echo "Failed to send the e-mail \"$mail_subject\".";
  15.    }
  16. ?>
  17.