This article describes how to send php mail with CC and BCC. It involves the use of the mail function in php and is very useful. For more information, see
This article describes how to send php mail with CC and BCC. It involves the use of the mail function in php and is very useful. For more information, see
This example describes how to send php mail with CC and BCC. Share it with you for your reference. The specific analysis is as follows:
The mail function of php is used in the program. The function is defined as follows:
Bool mail (string $ to, string $ subject, string $ message [, string $ additional_headers [, string $ additional_parameters])
Returns True if the email is successfully sent; otherwise, returns False.
Send email with CC and BCC
The backend php code, which is saved as sendmail. php.
Send Mail Script <? Php $ message = ""; if (empty ($ mailtoname) | empty ($ mailtomail) {die ("Recipient is blank! ");} Else {$ to = $ mailtoname. "<". $ mailtomail. ">" ;}if (empty ($ mailsubject) {$ mailsubject = "" ;}if ($ mailpriority> 0) & ($ mailpriority <6 )) {$ mailheader = "X-Priority :". $ mailpriority. "\ n" ;}$ mailheader. = "From :". "Sales Team \ N "; $ mailheader. = "X-Sender :". "support@yourdomain.com \ n"; $ mailheader. = "Return-Path :". "support@yourdomain.com \ n"; if (! Empty ($ mailcc) {$ mailheader. = "Cc:". $ mailcc. "\ n";} if (! Empty ($ mailbcc) {$ mailheader. = "Bcc :". $ mailbcc. "\ n" ;}if (empty ($ mailbody) {$ mailbody = "" ;}$ result = mail ($ to, $ mailsubject, $ mailbody, $ mailheader ); echo"
Mail sent to "." $ "."
"; Echo $ mailsubject ."
"; Echo $ mailbody ."
"; Echo $ mailheader ."
"; If ($ result) {echo"Email sent successfully!
";} Else {echo"
Email cocould not be sent.
";}?>
To |
<? Php echo $ mailtoname. "[". $ mailtomail. "]";?> |
CC |
<? Php echo $ mailcc;?> |
BCC |
<? Php echo $ mailbcc;?> |
Priority |
<? Php echo $ mailpriority;?> |
Subject |
<? Php echo $ mailsubject;?> |
Message |
<? Php echo $ mailbody;?> |
I hope this article will help you with php programming.