search
HomeBackend DevelopmentPHP TutorialFull-featured PHP code for sending emails with detailed instructions_PHP Tutorial
Full-featured PHP code for sending emails with detailed instructions_PHP TutorialJul 21, 2016 pm 03:51 PM
phpVAcodeoverall situationsendvariableofkindset updetailedillustratemail

class Email {
//---Set global variables
var $mailTo = ""; // Recipients
var $mailCC = ""; // CC
var $mailBCC = ""; // Secret CC
var $mailFrom = ""; // Sender
var $mailSubject = ""; // Subject
var $mailText = ""; // Text format letter body
var $mailHTML = ""; // HTML format letter body
var $mailAttachments = ""; // Attachments
/* Function setTo($inAddress ): The address used to process emails Parameter $inAddress
Contains one or more strings, email address variables, use commas to separate multiple email addresses
The default return value is true
**** *************************************************** ****/
function setTo($inAddress){
//--Use the explode() function to split the email address based on ","
$addressArray = explode( ",",$inAddress );
//--Check the validity of the email address through loop
for($i=0;$icheckEmail ($addressArray[$i])==false) return false; }
//--All legal email addresses are stored in the array
$this->mailTo = implode($addressArray, "," ; Split
$addressArray = explode( ",",$inAddress);
//-Check the validity of the email address through loop
for($i=0;$icheckEmail($addressArray[$i])==false) return false; }
//--All legal email addresses are stored in the array
$this->mailCC = implode($addressArray, ",");
return true; }
/************************************************
Function setCC($inAddress) sets the email address of the carbon copy person
The parameter $inAddress is a string containing one or more email addresses, an email address variable,
Use commas to separate multiple email addresses. The default return value is true
************************************************ ****************/
function setBCC($inAddress){
// --Use the explode() function to split the email address based on ","
$addressArray = explode( ",",$inAddress);
//--Check the legality of the email address through loops
for($i=0;$i{ if($this->checkEmail($addressArray[$i])==false)
return false ;
}
//--All legal email addresses are stored in the array
$this->mailBCC = implode($addressArray, ",");
return true;
}
/*************************************************
Function setBCC($inAddress) sets the secret carbon copy address. The parameter $inAddress is a string containing one or more
email addresses. The email address variable uses commas to separate multiple email addresses. The default return value is
true
*************************************************/
function setFrom($inAddress){
if($this->checkEmail($inAddress)){
$this->mailFrom = $ inAddress;
return true;
} return false; }
/***************************************************** *************
Function setFrom($inAddress): Set the sender address parameter $inAddress to contain the email
The default return value of the address string is true
* **************************************/
function setSubject($inSubject){
if(strlen(trim($inSubject)) > 0){
$this->mailSubject = ereg_replace( "n", "",$inSubject);
return true; }
return false; }
/**************************
The function setSubject($inSubject) is used to set the email subject parameter $inSubject to a string,
The default return value is true
*******************************************/
function setText($inText){
if(strlen(trim($inText)) > 0){
$this->mailText = $inText;
return true; }
return false;
}
/**************************************
Function setHTML($inHTML) sets the email body parameter $inHTML in html format It is in html format,
The default return value is true
*************************************/
function setHTML($inHTML){
if(strlen(trim($inHTML)) > 0){
$this->mailHTML = $ inHTML;
return true; }
return false; }
/************************
Function setAttachments($inAttachments) sets the attachments of the email. The parameter $inAttachments
is a string containing the directory, which can also be included. Multiple files are separated by commas. The default return value is true
**************************************** ********/
function setAttachments($inAttachments){
if(strlen(trim($inAttachments)) > 0){
$this->mailAttachments = $inAttachments;
return true; }
return false; }
/*********************************
Function checkEmail($inAddress): We have already called this function before, Mainly
used to check the legitimacy of email addresses
********************************** *****/
function checkEmail($ inAddress){
return (ereg( "^[^@ ]+@([a-zA-Z0-9-]+.)+([a-zA-Z0-9-]{2}|net| com|gov|mil|org|edu|int)$",$inAddress));
}
/*************************************************
The function loadTemplate($inFileLocation,$inHash,$inFormat) reads the temporary file and
replaces the useless information parameter $inFileLocation is used to locate the directory of the file
$inHash is used to store the temporary value $inFormat is used to place the email body
************************************************ ***********/
function loadTemplate($inFileLocation,$inHash,$inFormat) {
/* For example, the email contains the following content: Dear ~!UserName~,
Your address is ~!UserAddress~ */
//--"~!" is the starting mark "~" For the end mark
$templateDelim = "~";
$templateNameStart = "!";
//--Find these places and replace them
$templateLineOut = ""; // --Open temporary file
if($templateFile = fopen($inFileLocation, "r")){
while(!feof($templateFile)){
$templateLine = fgets($templateFile,1000) ;
$templateLineArray = explode($templateDelim,$templateLine);
for( $i=0; $i//--Find the starting position
if(strcspn($templateLineArray[$i],$templateNameStart)==0){
//--Replace the corresponding value
$hashName = substr($templateLineArray[$i],1) ;
//--Replace the corresponding value
$templateLineArray[$i] = ereg_replace($hashName,(string)$inHash[$hashName],$hashName);
}
}
//--Output character array and overlay
$templateLineOut .= implode($templateLineArray, "");
} //--Close the file fclose($templateFile);
//-- Set the body format (text or html)
if( strtoupper($inFormat)== "TEXT" )
return($this->setText($templateLineOut));
else if( strtoupper($ inFormat)== "HTML" )
return($this->setHTML($templateLineOut));
} return false;
}
/*****************************************
Function getRandomBoundary($offset) returns a Random boundary value
The parameter $offset is an integer – used for multi-pipeline calls and returns an md5() encoded string
********************** **********************/
function getRandomBoundary($offset = 0){
//--Random number generation
srand(time()+$offset);
//--Return md5 encoded 32-bit character string
return ( "----".(md5(rand()))); }
/******************************************
Function: getContentType($ inFileName) is used to determine the type of attachment
****************************************** *****/
function getContentType($inFileName){
//- -Remove path
$inFileName = basename($inFileName);
//--Remove files without extension
if(strrchr($inFileName, ".") == false){
return "application/octet-stream";

//--提区扩展名并进行判断 
$extension = strrchr($inFileName, "."); 
switch($extension){ 
case ".gif": return "image/gif"; 
case ".gz": return "application/x-gzip"; 
case ".htm": return "text/html"; 
case ".html": return "text/html"; 
case ".jpg": return "image/jpeg"; 
case ".tar": return "application/x-tar"; 
case ".txt": return "text/plain"; 
case ".zip": return "application/zip"; 
default: return "application/octet-stream"; 

return "application/octet-stream"; 

/**************************************************
Function formatTextHeader Text content plus text file header
****************************************** **************/ 
function formatTextHeader(){ $outTextHeader = ""; 
$outTextHeader .= "Content-Type: text/plain; 
charset=us-asciin"; 
$outTextHeader .= "Content-Transfer-Encoding: 7bitnn"; 
$outTextHeader .= $this->mailText. "n"; 
return $outTextHeader; 
} /************************************************
Function formatHTMLHeader() adds the html file header to the email body content
********************************** ********/ 
function formatHTMLHeader(){ 
$outHTMLHeader = ""; 
$outHTMLHeader .= "Content-Type: text/html; 
charset=us-asciin"; 
$outHTMLHeader .= "Content-Transfer-Encoding: 7bitnn"; 
$outHTMLHeader .= $this->mailHTML. "n"; 
return $outHTMLHeader; 

/**************************************
The function formatAttachmentHeader($inFileLocation) identifies the attachment in the email
*************************************/ 
function formatAttachmentHeader($inFileLocation){ 
$outAttachmentHeader = ""; 
//--用上面的函数getContentType($inFileLocation)得出附件类型 
$contentType = $this->getContentType($inFileLocation); 
//--如果附件是文本型则用标准的7位编码 
if(ereg( "text",$contentType)){ 
$outAttachmentHeader .= "Content-Type: ".$contentType. ";n"; 
$outAttachmentHeader .= ' name="'.basename($inFileLocation). '"'. "n"; 
$outAttachmentHeader .= "Content-Transfer-Encoding: 7bitn"; 
$outAttachmentHeader .= "Content-Disposition: attachment;n"; 
$outAttachmentHeader .= ' filename="'.basename($inFileLocation). '"'. "nn"; 
$textFile = fopen($inFileLocation, "r"); 
while(!feof($textFile)){ 
$outAttachmentHeader .= fgets($textFile,1000); 

//--关闭文件 fclose($textFile); 
$outAttachmentHeader .= "n"; 

//--非文本格式则用64位进行编码 
else{ $outAttachmentHeader .= "Content-Type: ".$contentType. ";n"; 
$outAttachmentHeader .= ' name="'.basename($inFileLocation). '"'. "n"; 
$outAttachmentHeader .= "Content-Transfer-Encoding: base64n"; 
$outAttachmentHeader .= "Content-Disposition: attachment;n"; 
$outAttachmentHeader .= ' filename="'.basename($inFileLocation). '"'. "nn"; 
//--调用外部命令uuencode进行编码 
exec( "uuencode -m $inFileLocation nothing_out",$returnArray); 
for ($i = 1; $i$outAttachmentHeader .= $returnArray[$i]. "n"; 

} return $outAttachmentHeader; 
}
/********************************
Function send() is used to send emails, and the return value is true if sent successfully
* *************************************/
function send(){
//--Set the email header to empty
$mailHeader = "";
//--Add CC People
if($this->mailCC != "")
$mailHeader .= "CC: ".$this->mailCC. "n";
//--Add secret copy Give it away
if($this->mailBCC != "")
$mailHeader .= "BCC: ".$this->mailBCC. "n";
//--Add Send From
if($this->mailFrom != "")
$mailHeader .= "FROM: ".$this->mailFrom. "n";
//---- -----------------------Email format------------------------- -----
//--Text format
if($this->mailText != "" && $this->mailHTML == "" && $this->mailAttachments == " "){
return mail($this->mailTo,$this->mailSubject,$this->mailText,$mailHeader);
}
//--html or text format
else if($this->mailText != "" && $this->mailHTML != "" && $this->mailAttachments == ""){
$bodyBoundary = $this-> getRandomBoundary();
$textHeader = $this->formatTextHeader();
$htmlHeader = $this->formatHTMLHeader();
//--Set MIME-version
$mailHeader .= "MIME-Version: 1.0n";
$mailHeader .= "Content-Type: multipart/alternative;n";
$mailHeader .= ' boundary="'.$bodyBoundary. '"';
$mailHeader .= "nnn";
//--Add email body and boundary
$mailHeader .= "--".$bodyBoundary. "n";
$mailHeader .= $ textHeader;
$mailHeader .= "--".$bodyBoundary. "n";
//--Add html tag
$mailHeader .= $htmlHeader;
$mailHeader .= "n --".$bodyBoundary. "--";
//--Send mail
return mail($this->mailTo,$this->mailSubject, "",$mailHeader);
}
//--Text plus html plus attachments
else if($this->mailText != "" && $this->mailHTML != "" && $this->mailAttachments != ""){
$attachmentBoundary = $this->getRandomBoundary();
$mailHeader .= "Content-Type: multipart/mixed;n";
$mailHeader .= ' boundary="' .$attachmentBoundary. '"'. "nn";
$mailHeader .= "This is a multi-part message in MIME format.n";
$mailHeader .= "--".$attachmentBoundary. " n";
$bodyBoundary = $this->getRandomBoundary(1);
$textHeader = $this->formatTextHeader();
$htmlHeader = $this->formatHTMLHeader();
$mailHeader .= "MIME-Version: 1.0n";
$mailHeader .= "Content-Type: multipart/alternative;n";
$mailHeader .= ' boundary="'.$bodyBoundary. '"';
$mailHeader .= "nnn";
$mailHeader .= "--".$bodyBoundary. "n";
$mailHeader .= $textHeader;
$mailHeader . = "--".$bodyBoundary. "n";
$mailHeader .= $htmlHeader;
$mailHeader .= "n--".$bodyBoundary. "--";
//- -Get the attachment value
$attachmentArray = explode( ",",$this->mailAttachments);
//--Loop according to the number of attachments
for($i=0;$i< ;count($attachmentArray);$i++){
//--Split $mailHeader .= "n--".$attachmentBoundary. "n";
//--Attachment information
$mailHeader .= $this->formatAttachmentHeader($attachmentArray[$i]);
}
$mailHeader .= "--".$attachmentBoundary. "--";
return mail($this- >mailTo,$this->mailSubject, "",$mailHeader);
}
return false;
}
}
?>
Usage:

Copy code The code is as follows:


Include “email.class”

$mail->setTo("a@a.com"); //Recipient
$mail -> setCC("b@b.com,c@c.com"); //CC
$mail-> setCC("d@b.com,e@c.com"); / /Secret CC
$mail->setFrom(“f@f.com”);//Sender
$mail->setSubject(“Subject”); //Subject
$ mail->setText("text format");//Sending text format can also be a variable
$mail->setHTML("html format");//Sending html format can also be a variable
$ mail->setAttachments("c:a.jpg"); //Add attachments, need to indicate the path
$mail->send(); //Send mail
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319229.htmlTechArticle?php classEmail{ //---Set the global variable var$mailTo="";//Recipient var$mailCC="";//Cc var$mailBCC="";//Secret Cc var$mailFrom="";//Sender var$mailSubject="";//Subject var$m.. .
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在技嘉主板上设置键盘启动功能 (技嘉主板启用键盘开机方式)如何在技嘉主板上设置键盘启动功能 (技嘉主板启用键盘开机方式)Dec 31, 2023 pm 05:15 PM

技嘉的主板怎么设置键盘开机首先,要支持键盘开机,一定是PS2键盘!!设置步骤如下:第一步:开机按Del或者F2进入bios,到bios的Advanced(高级)模式普通主板默认进入主板的EZ(简易)模式,需要按F7切换到高级模式,ROG系列主板默认进入bios的高级模式(我们用简体中文来示范)第二步:选择到——【高级】——【高级电源管理(APM)】第三步:找到选项【由PS2键盘唤醒】第四步:这个选项默认是Disabled(关闭)的,下拉之后可以看到三种不同的设置选择,分别是按【空格键】开机、按组

php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

CS玩家的首选:推荐的电脑配置CS玩家的首选:推荐的电脑配置Jan 02, 2024 pm 04:26 PM

1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

主板上的数字音频输出接口-SPDIF OUT主板上的数字音频输出接口-SPDIF OUTJan 14, 2024 pm 04:42 PM

主板上SPDIFOUT连接线序最近我遇到了一个问题,就是关于电线的接线顺序。我上网查了一下,有些资料说1、2、4对应的是out、+5V、接地;而另一些资料则说1、2、4对应的是out、接地、+5V。最好的办法是查看你的主板说明书,如果找不到说明书,你可以使用万用表进行测量。首先找到接地,然后就可以确定其他的接线顺序了。主板vdg怎么接线连接主板的VDG接线时,您需要将VGA连接线的一端插入显示器的VGA接口,另一端插入电脑的显卡VGA接口。请注意,不要将其插入主板的VGA接口。完成连接后,您可以

广联达软件电脑配置推荐;广联达软件对电脑的配置要求广联达软件电脑配置推荐;广联达软件对电脑的配置要求Jan 01, 2024 pm 12:52 PM

广联达软件是一家专注于建筑信息化领域的软件公司,其产品被广泛应用于建筑设计、施工、运营等各个环节。由于广联达软件功能复杂、数据量大,对电脑的配置要求较高。本文将从多个方面详细阐述广联达软件的电脑配置推荐,以帮助读者选择适合的电脑配置处理器广联达软件在进行建筑设计、模拟等操作时,需要进行大量的数据计算和处理,因此对处理器的要求较高。推荐选择多核心、高主频的处理器,如英特尔i7系列或AMDRyzen系列。这些处理器具有较强的计算能力和多线程处理能力,能够更好地满足广联达软件的需求。内存内存是影响计算

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!