the first param of php mail function is TO. Is there anyway to skip this parameter and use only CC/BCC to send bulk mails?
Thanks
An email message does not require a To header field. So you could pass null or a blank string for the to parameter, set up your own header containing the BCC header field and provide it with the fourth parameter additional_headers of mail:
null
mail
$headerFields = array( 'BCC: [email protected], [email protected], [email protected]' ); mail(null, $subject, $message, implode(" ", $headerFields));
1.4m articles
1.4m replys
5 comments
57.0k users