Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2001072

Re: [PHP] Mailing 4 newbies From: DrWebPat <email protected>
Date: 07/31/01

<?
       $to = "first <email protected>; second <email protected>";
       $subject = "Subject here";
       $message = "Message here";
       $from = "yours <email protected>";

       mail($to, $subject, $message, $from);
?>

That should do it.
Pat