下面是一款婚恋网站的邮箱发送实例代码,有需要的朋友可以下载
- <?php
- //if ($err) {echo "发送邮件失败,原因:<br>";foreach($err as $a){echo $a."<br>";}}
- class wrzc_netmail {
- /* var $localhost;
- var $smtp_accname;
- var $smtp_password;
- var $smtp_host;
- var $from;
- var $fromname;
- */ function send($to, $subject = 'no subject', $body) {
- $localhost = $this->localhost;
- $smtp_accname = $this->smtp_accname;
- $smtp_password = $this->smtp_password;
- $smtp_host = $this->smtp_host;
- $from = $this->from;
- $fromname = $this->fromname;
- $lb = "rn";
- $headers = "content-type: text/html;charset="gbk"";
- $headers.= $lb;
- $headers.= "content-transfer-encoding: base64";
- $hdr = explode($lb, $headers);
- if ($body) {
- $bdy = preg_replace("/^./", "..", explode($lb, $body));}
- $smtp[] = array("ehlo ".$localhost.$lb, "220,250", "ehlo error: ");
- $smtp[] = array("auth login".$lb, "334", "auth error: ");
- $smtp[] = array(base64_encode($smtp_accname).$lb, "334", "authentification error: ");
- $smtp[] = array(base64_encode($smtp_password).$lb, "235", "authentification error: ");
- $smtp[] = array("mail from: <".$from.">".$lb, "250", "mail from error: ");
- $smtp[] = array("rcpt to: <".$to.">".$lb, "250", "rcpt to error: ");
- $smtp[] = array("data".$lb, "354", "data error: ");
- $smtp[] = array("from: ".$fromname." <".$from.">".$lb, "", "");
- $smtp[] = array("subject: ".$subject.$lb, "", "");
- $smtp[] = array("to: ".$to.$lb, "", "");
- foreach ($hdr as $h) {
- $smtp[] = array($h.$lb, "", "");}
- $smtp[] = array($lb, "", "");
- if ($bdy) {
- foreach ($bdy as $b) {
- $smtp[] = array(base64_encode($b.$lb).$lb, "", "");}}
- $smtp[] = array(".".$lb, "250", "data(end)error: ");
- $smtp[] = array("quit".$lb, "221", "quit error: ");
- $fp = @fsockopen($smtp_host, 25);
- if (!$fp)
- return "error: cannot conect to '".$smtp_host."' by port 25";
- while ($result = @fgets($fp, 1024)) {
- if (substr($result, 3, 1) == " ") {
- break;}}
- $result_str;
- foreach ($smtp as $req) {
- @fputs($fp, $req[0]);
- if ($req[1]) {
- while ($result = @fgets($fp, 1024)) {
- if (substr($result, 3, 1) == " ") {
- break;}};
- if (!strstr($req[1], substr($result, 0, 3))) {
- $result_str[] = $req[2].$result;}}}
- @fclose($fp);
- return $result_str;}
- function setlocalhost($localhost) {$this->localhost = $localhost;}
- function setsmtp_accname($smtp_accname) {$this->smtp_accname = $smtp_accname;}
- function setsmtp_password($smtp_password) {$this->smtp_password = $smtp_password;}
- function setsmtp_host($smtp_host) {$this->smtp_host = $smtp_host;}
- function setfrom($from) {$this->from = $from;}
- function setfromname($fromname) {$this->fromname = $fromname;}
- }
- //unset
- ?>
波比源码 – 精品源码模版分享 | www.bobi11.com
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 本站源码并不保证全部能正常使用,仅供有技术基础的人学习研究,请谨慎下载
8. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
波比源码 » php邮箱发送类代码
波比源码 » php邮箱发送类代码