php實現郵件傳送並帶有附件

2022-09-26 21:27:20 字數 1320 閱讀 8485

emailclass.php

複製** **如下:

class cmailfile

function attach_file($filename,$downfilename,$mimetype,$mime_filename)

function encode_file($sourcefile)

return $encoded;

}function sendfile() www.jb51.net

function write_body($msgtext)

function write_mimeheaders($filename, $mime_filename)

function write_smtpheaders($addr_from)

}/*用法 - 例如:mimetype 為 "image/gif"

$mailfile = new cmailfile($subject,$sendto,$replyto,$message,$filename,$mimetype);

$mailfile->sendfile();

$subject -- 主題

$sendto -- 收信人位址

$replyto -- 回覆位址

$message -- 信件內容

$filename -- 附件檔名

$downfilename -- 下載的檔名

$mimetype -- mime型別

*/ ?>

演示示例

複製** **如下:

<?php

require_once('emailclass.php');

//傳送郵件

//主題

$subject = "test send email";

//收件人

$sendto = '[email protected]';

//發件人

$replyto = '[email protected]';

//內容 www.jb51.net

$message = "test send email content";

//附件

//附件類別

$mimetype = "image/jpeg";

$mailfile = new cmailfile($subject,$sendto,$replyto,$message,$filename,$excelname,$mimetype);

$mailfile->sendfile();

?>

本文位址:

php傳送郵件附帶附件

define eol r n define smtp host smtp.sina.com.cn smtp伺服器 define smtp port 25 smtp伺服器端口 define smtp user smtp伺服器的使用者帳號 define smtp pass smtp伺服器的使用者密碼 d...

php簡單實現傳送帶附件的郵件

下面是靜態html 帶附件的郵件傳送 sendmail.php檔案 from post from to post to subject post subje程式設計客棧ct body post body 定義分界線 boundary 345894369383 分界線是一串無規律的字元 設定heade...

php實現的傳送帶附件郵件類例項

emailclass.php類檔案如下 class cmailfile function attach file filename,downfilename,mimetype,mime filename function encode file sourcefile return encoded f...