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