功能强大的PHP发邮件类
php  /  管理员 发布于 7年前   142
本文示例为大家分享了强大的PHP发邮件类,供大家参考,具体内容如下 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。debug = true;$this->smtp_port = $smtp_port;$this->relay_host = $relay_host;$this->time_out = 30; $this->auth = $auth;$this->user = $user;$this->pass = $pass;$this->host_name = "localhost"; $this->log_file ="";$this->sock = FALSE;} function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = ""){$mail_from = $this->get_address($this->strip_comment($from));$body = ereg_replace("(^|(\r\n))(\\.)", "\\1.\\3", $body);$header .= "MIME-Version:1.0\r\n";if($mailtype=="HTML"){$header .= "Content-Type:text/html\r\n";}$header .= "To: ".$to."\r\n";if ($cc != ""){$header .= "Cc: ".$cc."\r\n";}$header .= "From: $from<".$from.">\r\n";$header .= "Subject: ".$subject."\r\n";$header .= $additional_headers;$header .= "Date: ".date("r")."\r\n";$header .= "X-Mailer:By Redhat (PHP/".phpversion().")\r\n";list($msec, $sec) = explode(" ", microtime());$header .= "Message-ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">\r\n";$TO = explode(",", $this->strip_comment($to));if ($cc != "") {$TO = array_merge($TO, explode(",", $this->strip_comment($cc)));}if ($bcc != "") {$TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));}$sent = TRUE;foreach ($TO as $rcpt_to) {$rcpt_to = $this->get_address($rcpt_to);if (!$this->smtp_sockopen($rcpt_to)) {$this->log_write("Error: Cannot send email to ".$rcpt_to."\n");$sent = FALSE;continue;}if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {$this->log_write("E-mail has been sent to <".$rcpt_to.">\n");} else {$this->log_write("Error: Cannot send email to <".$rcpt_to.">\n");$sent = FALSE;}fclose($this->sock);$this->log_write("Disconnected from remote host\n");}echo "
";echo $header;return $sent;}/* Private Functions */function smtp_send($helo, $from, $to, $header, $body = ""){if (!$this->smtp_putcmd("HELO", $helo)) {return $this->smtp_error("sending HELO command");}#authif($this->auth){if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {return $this->smtp_error("sending HELO command");}if (!$this->smtp_putcmd("", base64_encode($this->pass))) {return $this->smtp_error("sending HELO command");}}#if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">")) {return $this->smtp_error("sending MAIL FROM command");}if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">")) {return $this->smtp_error("sending RCPT TO command");}if (!$this->smtp_putcmd("DATA")) {return $this->smtp_error("sending DATA command");}if (!$this->smtp_message($header, $body)) {return $this->smtp_error("sending message");}if (!$this->smtp_eom()) {return $this->smtp_error("sending
";}}function get_attach_type($image_tag) { //$filedata = array();$img_file_con=fopen($image_tag,"r");unset($image_data);while ($tem_buffer=AddSlashes(fread($img_file_con,filesize($image_tag))))$image_data.=$tem_buffer;fclose($img_file_con);$filedata['context'] = $image_data;$filedata['filename']= basename($image_tag);$extension=substr($image_tag,strrpos($image_tag,"."),strlen($image_tag)-strrpos($image_tag,"."));switch($extension){case ".gif":$filedata['type'] = "image/gif";break;case ".gz":$filedata['type'] = "application/x-gzip";break;case ".htm":$filedata['type'] = "text/html";break;case ".html":$filedata['type'] = "text/html";break;case ".jpg":$filedata['type'] = "image/jpeg";break;case ".tar":$filedata['type'] = "application/x-tar";break;case ".txt":$filedata['type'] = "text/plain";break;case ".zip":$filedata['type'] = "application/zip";break;default:$filedata['type'] = "application/octet-stream";break;}return $filedata;}}/***实例化邮件类*/$smtpserver = "smtp.163.com"; //SMTP服务器$smtpserverport =25; //SMTP服务器端口$smtpusermail = "[email protected]"; //SMTP服务器的用户邮箱$smtpemailto = "[email protected]"; //发送给谁$smtpuser = "[email protected]"; //SMTP服务器的用户帐号$smtppass = "123147mcl"; //SMTP服务器的用户密码$mailsubject = "PHP100测试邮件系统"; //邮件主题$mailbody = "你的用户名是张三,密码是123147mcl
"; //邮件内容$mailtype = "HTML"; //邮件格式(HTML/TXT),TXT为文本邮件$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);$smtp->debug = true; //是否显示发送的调试信息$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);?>您可能感兴趣的文章:
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号