Php mail sending method with CC and BCC

Source: Internet
Author: User
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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.