Email Php

   $headers = "From:sender@rntsoft.com\r\n";
   $recipients = "b@java.com,a@java.com";
   mail($recipients, "This is the subject","This is the mail body", $headers);
?>