一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

php實現郵件發送并帶有附件

emailclass.php

復制代碼 代碼如下:
<?
class CMailFile {

var $subject;
var $addr_to;
var $text_body;
var $text_encoded;
var $mime_headers;
var $mime_boundary = "--==================_846811060==_";
var $smtp_headers;

function CMailFile($subject,$to,$from,$msg,$filename,$downfilename,$mimetype = "application/octet-stream",$mime_filename = false) {
$this->subject = $subject;
$this->addr_to = $to;
$this->smtp_headers = $this->write_smtpheaders($from);
$this->text_body = $this->write_body($msg);
$this->text_encoded = $this->attach_file($filename,$downfilename,$mimetype,$mime_filename);
$this->mime_headers = $this->write_mimeheaders($filename, $mime_filename);
}

function attach_file($filename,$downfilename,$mimetype,$mime_filename) {
$encoded = $this->encode_file($filename);
if ($mime_filename) $filename = $mime_filename;
$out = "--" . $this->mime_boundary . "/n";
$out = $out . "Content-type: " . $mimetype . "; name=/"$filename/";/n";
$out = $out . "Content-Transfer-Encoding: base64/n";
$out = $out . "Content-disposition: attachment; filename=/"$downfilename/"/n/n";
$out = $out . $encoded . "/n";
$out = $out . "--" . $this->mime_boundary . "--" . "/n";
return $out;
}

function encode_file($sourcefile) {
if (is_readable($sourcefile)) {
$fd = fopen($sourcefile, "r");
$contents = fread($fd, filesize($sourcefile));
$encoded = chunk_split(base64_encode($contents));
fclose($fd);
}
return $encoded;
}

function sendfile() {
$headers = $this->smtp_headers . $this->mime_headers;
$message = $this->text_body . $this->text_encoded;
mail($this->addr_to,$this->subject,$message,$headers);
} www.jbxue.com

function write_body($msgtext) {
$out = "--" . $this->mime_boundary . "/n";
$out = $out . "Content-Type: text/plain; charset=/"us-ascii/"/n/n";
$out = $out . $msgtext . "/n";
return $out;
}

function write_mimeheaders($filename, $mime_filename) {
if ($mime_filename) $filename = $mime_filename;
$out = "MIME-version: 1.0/n";
$out = $out . "Content-type: multipart/mixed; ";
$out = $out . "boundary=/"$this->mime_boundary/"/n";
$out = $out . "Content-transfer-encoding: 7BIT/n";
$out = $out . "X-attachments: $filename;/n/n";
return $out;
}

function write_smtpheaders($addr_from) {
$out = "From: $addr_from/n";
$out = $out . "Reply-To: $addr_from/n";
$out = $out . "X-Mailer: php3/n";
$out = $out . "X-Sender: $addr_from/n";
return $out;
}
}

/*用法 - 例如:mimetype 為 "image/gif"
$mailfile = new CMailFile($subject,$sendto,$replyto,$message,$filename,$mimetype);
$mailfile->sendfile();

$subject -- 主題
$sendto -- 收信人地址
$replyto -- 回復地址
$message -- 信件內容
$filename -- 附件文件名
$downfilename -- 下

主站蜘蛛池模板: 一区二区三区免费高清视频 | 久久夜色精品国产欧美 | 五月天激情播播 | 在线观看精品视频一区二区三区 | 久热国产在线视频 | 成人免费观看www在线 | 小泽玛利亚一区二区三区免费 | 久久久亚洲欧洲日产国码二区 | 久久伊人一区二区三区四区 | 激情小说图片 | 亚洲一区免费视频 | 亚洲综合伊人 | 高清欧美在线三级视频 | 88精品视频 | 欧美成年黄网站色高清视频 | 欧美一区二区三区视视频 | 91日韩视频在线观看 | 五月婷婷在线视频 | 色婷婷一区二区三区四区成人 | 在线观看免费视频国产 | 伊人蜜桃| 麻豆视频观看 | 一级做α爰片久久毛片 | 丁香综合五月 | 91福利在线视频 | 91在线免费公开视频 | 亚洲人欧洲日韩 | 最近更新中文字幕第一页 | 国产亚洲精品福利片 | 久久怡红院亚欧成人影院 | 国产一区二区三区在线视频 | 国产成人黄网址在线视频 | 国产午夜在线观看视频 | 99精品视频一区在线视频免费观看 | 国产91精品高跟丝袜在线 | 91亚洲精品国产自在现线 | 九色国产在视频线精品视频 | 日本中文字幕一区二区有码在线 | 久久91亚洲精品中文字幕奶水 | 国产v2ba最新在线观看 | 亚洲人成高清毛片 |