PHP: Envoyer un email

Author:
<?php
   $headers = "From:sender@mesexemples.com ";
   $recipients = "b@java.com,a@java.com";
   mail($recipients, "This is the subject","This is the mail body", $headers);
?>