当前位置:编程学习 > php >>

php 邮箱发送附件实例程序

php教程 邮箱发送附件实例程序
<?php

class AttachmentMail {
 private $from = 'yours@email.com';
 private $from_name = 'Your Name';
 private $reply_to = 'yours@email.com';
 private $to = '';
 private $subject = '';
 private $message = '';
 private $attachment = '';
 private $attachment_filename = '';

 public function __construct($to, $subject, $message, $attachment = '', $attachment_filename = '') {
  $this -> to = $to;
  $this -> subject = $subject;
  $this -> message = $message;
  $this -> attachment = $attachment;
  $this -> attachment_filename = $attachment_filename;
 }

 public function mail() {
  if (!empty($this -> attachment)) {
   $filename = empty($this -> attachment_filename) ? basename($this -> attachment) : $this -> attachment_filename ;
   $path = dirname($this -> attachment);
   $mailto = $this -> to;
   $from_mail = $this -> from;
   $from_name = $this -> from_name;
   $replyto = $this -> reply_to;
   $subject = $this -> subject;
   $message = $this -> message;

      $file = $path.'/'.$filename;
      $file_size = filesize($file);
      $handle = fopen($file, "r");
      $content = fread($handle, $file_size);
      fclose($handle);
      $content = chunk_split(base64_encode($content));
      $uid = md5(uniqid(time()));
      $name = basename($file);
      $header = "From: ".$from_name." <".$from_mail.">rn";
      $header .= "Reply-To: ".$replyto."rn";
      $header .= "MIME-Version: 1.0rn";
      $header .= "Content-Type: multipart/mixed; boundary="".$uid.""rnrn";
      $header .= "This is a multi-part message in MIME format.rn";
      $header .= "--".$uid."rn";
      $header .= "Content-type:text/plain; charset=iso-8859-1rn";
      $header .= "Content-Transfer-Encoding: 7bitrnrn";
      $header .= $message."rnrn";
      $header .= "--".$uid."rn";
      $header .= "Content-Type: application/octet-stream; name="".$filename.""rn"; // use diff. tyoes here
      $header .= "Content-Transfer-Encoding: base64rn";
      $header .= "Content-Disposition: attachment; filename="".$filename.""rnrn";
      $header .= $content."rnrn";
      $header .= "--".$uid."--";

      if (mail($mailto, $subject, "", $header)) {
       return true;
      } else {
          return false;
      }
  } else {
      $header = "From: ".($this -> from_name)." <".($this -> from).">rn";
      $header .= "Reply-To: ".($this -> reply_to)."rn";
      if (mail($this -> to, $this -> subject, $this -> message, $header)) {
       return true;
      } else {
          return false;
      }

  }
 }
}


?>

调用方法
<?php
require ('Email-Attachment.php');

$sendit = new AttachmentEmail('marry@example.com', 'Merry Christmas!', 'Hi', '/home/racker/gift.jpg');
$sendit -> mail();
?>

补充:Php教程,邮件处理 
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,