View Single Post
Old 2006-08-06, 06:29 AM   #5
Nookster
Internet! Is that thing still around?
 
Join Date: Jul 2006
Posts: 7
tehee

PHP
Code:
$from = 'tgp@yoursite.com';
$to = 'person@email.com';
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: YourSite TGP <' . $from . '>' . "\r\n";
$subject = 'Your gallery was accepted!';
$message = 'Your gallery was accepted and is now live on yoursite.com!<br />Thank you for your submission!';
// Mail it
mail($to, $subject, $message, $headers);

Last edited by Nookster; 2006-08-06 at 06:38 AM..
Nookster is offline   Reply With Quote