View Single Post
  #3 (permalink)  
Old 10-25-04, 02:52 AM
Sabu Sabu is offline
Junior Code Guru
 
Join Date: Sep 2004
Posts: 458
Thanks: 0
Thanked 0 Times in 0 Posts
PHP Code:

$contactemail "Email_address_to_send_to";

$subject "Welcome to $title"
$headers "From: MY_EMAIL_ADDRESS"
$message "hey hey";

mail($contactemail$subject$message$headers); 
Reply With Quote