- 论坛徽章:
- 0
|
好用,爽,速度一流 ! 不过MyMailer类,我改了改,这样可以得到cid
可以 <img src="cid:0"> 来在邮件中显示附件了
- <?PHP
- class MyMailer extends PHPMailer {
- // Set default variables for all new objects
- var $From = "xxx@xxx.com";
- var $FromName = "koocy";
- var $Host = "mail.xxx.com";
- var $Mailer = "smtp"; // Alternative to IsSMTP()
- var $SMTPAuth = true; // turn on SMTP authentication
- var $CharSet = "GB2312";
- var $Username = "xxx@xxx.com"; // SMTP username
- var $Password = "xxx"; // SMTP password
- var $WordWrap = 75;
- function AddAttachment($path, $name = "", $disposition="attachment", $encoding = "base64", $type = "application/octet-stream")
- {
-
- if(!@is_file($path))
- {
- $this->SetError($this->Lang("file_access") . $path);
- return false;
- }
- $filename = basename($path);
- if($name == "")
- $name = $filename;
- $cur = count($this->attachment);
- $this->attachment[$cur][0] = $path;
- $this->attachment[$cur][1] = $filename;
- $this->attachment[$cur][2] = $name;
- $this->attachment[$cur][3] = $encoding;
- $this->attachment[$cur][4] = $type;
- $this->attachment[$cur][5] = false; // isStringAttachment
- $this->attachment[$cur][6] = ($disposition=='attachment') ? 'attachment' : 'inline' ;
- $this->attachment[$cur][7] = $cur;
- return true;
- }
- }
- ?>
复制代码
发邮件的时候
- <?PHP
- $mail = new MyMailer;
- // Now you only need to add the necessary stuff
- $mail->AddAddress("xxx@xxx.com", "koocy");
- $mail->AddAddress("xxx@xxx.com", "abc");
- /// ......
- $mail->Subject = "邮件标题";
- $mail->Body = "下边是图片<br>\n<img src=\"cid:0\" width=\"100\" height=\"100\">\n<img src=\"cid:1\" width=\"200\" height=\"100\">";
- $mail->AddAttachment("D:/tmp/mac.jpg","mac.jpg",'inline'); // optional name
- $mail->AddAttachment("D:/tmp/123.jpg","1233.jpg",'inline'); // optional name
- $mail->IsHTML(true); // false 表示文本邮件正文
- if(!$mail->Send())
- {
- echo "发送失败" . $mail->ErrorInfo;
- }
- else
- {
- echo "发送成功";
- }
- ?>
复制代码 |
|