00001 00002 <?php 00003 $to = "xsb-users@lists.sourceforge.net"; 00004 if (mail($to, $subject, $body, ("From: " . $address))) { 00005 printf("<br>Email has been sent. Thank you."); 00006 } else { 00007 printf("<br>Sorry, an error occurred while sending email. Please try later."); 00008 } 00009 ?>