View Single Post
  #2 (permalink)  
Old 06-30-2009, 12:37 PM
PlatinumServerM PlatinumServerM is offline
Registered User
 
Join Date: Jul 2005
Location: New Jersey, USA
Posts: 385
PlatinumServerM is on a distinguished road
You can use a simple mail routine in either perl or php.

<?php
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
Reply With Quote