Mega Code Archive

 
Categories / Php / Functions
 

Send-mail-multiple-recipients php

<?php    $headers = "From:sender@example.com\r\n";    $recipients = "test@example.com,info@example.com";    mail($recipients, "This is the subject","This is the mail body", $headers); ?>