Php mail sending method with CC and BCC, bcc email _ PHP Tutorial

Source: Internet
Author: User
Php mail sending method with CC and BCC, and BCC mail. Php mail sending method with CC and BCC. this example describes how to send php mail with CC and BCC. Share it with you for your reference. For details, refer to the php mail sending method with CC and BCC.

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

Backend php code, 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 ". "$to". "
"; echo $mailsubject. "
"; echo $mailbody. "
"; echo $mailheader. "
"; if ($result) { echo "

Email sent successfully!

"; }else{ echo "

Email could 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.

Examples in this article describes how to send php mail with CC and BCC. Share it with you for your reference. Details...

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.