マイム|エッセンス
sendmail.php4
//添付ファイルを送信するためのクラスをロードします
require('html_mime_mail.inc');
if($update!=""){ //添付ファイルがある場合
//アップロード添付ファイルif(!file_exists( "c:/ftptmp /".$ myfile_name)){
($ fp = fopen(" c:/ftptmp /".$ myfile_name、 'r')、filesize($ myfile));
myfile_name); ️ echo "同じ名前のファイル!";
exit();
}
//クラスの新しいインスタンスを作成し、添付ファイルを追加します
$mail = new html_mime_mail();
$mail->add_attachment($attachment, $myfile_name, 'application/octet-stream');
/*--- ------------------この段落では次のことを示しますHTMLレターの送り方------------------------------------------
$filename = 'background.gif';
$backgrnd = fread($fp = fopen($filename, 'r'), filesize($filename)) ;
fclose($fp);
$text = 'これはテストです。';
$html = '
';
$mail->add_html_image($backgrnd, 'background.gif' , 'image/gif');
$mail->add_html( $html, $text);
------------------------ -------------- ---------------------------------- --------*/
//読むテキストを入力し、レターをカプセル化して送信します
$mail->body=$bodytext;
$mail->build_message();
$backvalue= $ Mail-& GT Send ('', $ ReceivemailBox, ' ', $ Sendmailbox, $ Subject, ''); & gt; レターを送信してください。戻るには [OK] を押してください。 ');window.location='default.htm'";
}
else{ //添付ファイルがない場合
$backvalue=mail($receivemailbox,$subject,$bodytext,"From:" . $sendmailbox . "nX-Mailbox: PHP/" . ');window.location='default.htm'& を押して戻ります。それ;/script>";
}
else{
echo "
?>
html_mime_mail.inc このクラスはお借りして使用させていただきました。
class html_mime_mail{
var $headers;
var $body;
var $multipart;
var $mime;
var $html;
var $html_text;
var $html_images = array();
var $ cids = array();
var $do_html;
var $parts = array();
/** **************************************
** コンストラクター関数。ヘッダーを設定します
** (指定されている場合)。
***************************************/
function html_mime_mail($headers = ''){
$this->headers = $headers;
}
/***************************************
** メールにHTML部分を追加します
* * 画像名も
** content-id に置き換えられます。
************************************ ***/
function add_html($html, $text){
$this-> do_html = 1;
$this->html = $html;
$this->html_text = $text;
if(is_array($this->html_images) AND count($this->html_images) > 0){
for($i=0; $i
$this->html = ereg_replace($this->html_images[$i][' name'], 'cid:'.$this->html_images[$i]['cid'], $this->html);
}
}
}
/****************************************
** メールの HTML 部分を構築します。
*** ***********************************/
関数 build_html($orig_boundary){
$sec_boundary = '=_'.md5(uniqid(time()));
$thr_boundary = '=_'.md5(uniqid(time()));
if(! is_array($this->html_images)){
$this->multipart.= '--'.$orig_boundary."rn";
$this->multipart.= 'Content-Type: multipart/alternative; border="'.$sec_boundary.""rnrnrn";
$this->multipart.= '--'.$sec_boundary."rn";
$this->multipart.= 'Content-Type: text /plain'."rn";
$this->multipart.= 'Content-Transfer-Encoding: 7bit'."rnrn";
$this->multipart.= $this->html_text."rnrn" ;
$this->multipart.= '--'.$sec_boundary."rn";
$this->multipart.= 'Content-Type: text/html'."rn";
$this- >multipart.= 'コンテンツ転送エンコーディング: 7 ビット'."rnrn";
$this->multipart.= $this->html."rnrn";
$this->multipart.= '- -'.$sec_boundary."--rnrn";
}else{
$this->multipart.= '--'.$orig_boundary."rn";
$this->multipart.= 'Content-Type : マルチパート/関連。 border="'.$sec_boundary.""rnrnrn";
$this->multipart.= '--'.$sec_boundary."rn";
$this->multipart.= 'Content-Type: multipart /代替; border="'.$thr_boundary.""rnrnrn";
$this->multipart.= '--'.$thr_boundary."rn";
$this->multipart.= 'Content-Type: text /plain'."rn";
$this->multipart.= 'Content-Transfer-Encoding: 7bit'."rnrn";
$this->multipart.= $this->html_text."rnrn" ;
$this->multipart.= '--'.$thr_boundary."rn";
$this->multipart.= 'Content-Type: text/html'."rn";
$this- >multipart.= 'コンテンツ転送エンコーディング: 7 ビット'."rnrn";
$this->multipart.= $this->html."rnrn";
$this->multipart.= '- -'.$thr_boundary."--rnrn";
for($i=0; $i
$this->multipart.= '-- '.$sec_boundary."rn";
$this->build_html_image($i);
}
$this->multipart.= "--".$sec_boundary."--rnrn";
}
}
/****************************************
** 埋め込みリストに画像を追加します
* * 画像。
**************************************/
function add_html_image($file, $name = '', $c_type='application/octet-stream'){
$this->html_images[] = array( 'body' => $file,
'name' => $name,
'c_type' => md5(uniqid(time())) );
}
/ ****************************************
** 添付ファイルのリストにファイルを追加します。
**************************************/
function add_attachment($file, $name = '', $c_type='application/octet-stream'){
$this->parts[] = array( 'body' => $file,
'名前' => $name,
'c_type' => $c_type );
}
/****************************************
**
** の埋め込み画像部分を構築しますhtmlメール
**************************************/
function build_html_image($i){
$this->multipart.= 'Content-Type: '.$this->html_images[$i] ['c_type'];
if($this->html_images[$i]['name'] != '') $this->multipart .= '; name="'.$this->html_images[$i]['name'].""rn";
else $this->multipart .= "rn";
$this->multipart.= 'Content-ID: <'.$this->html_images[$i]['cid'].">rn";
$this->multipart.= 'Content-Transfer-Encoding:base64'。 "rnrn";
$this->multipart.= chunk_split(base64_encode($this->html_images[$i]['body']))."rn";
}
/****** *********************************
** マルチパートの単一パートを構築します
** message.
***************************************/
function build_part($ i){
$message_part = '';
$message_part.= 'Content-Type: '.$this->parts[$i]['c_type'];
if($this->parts[$i ]['名前'] != '')
$message_part .= '; name="'.$this->parts[$i]['name'].""rn";
else
$message_part .= "rn";
// コンテンツのエンコーディングを決定します。
if($this ->parts[$i]['c_type'] == 'text/plain'){
$message_part.= 'Content-Transfer-Encoding: 7bit'."rnrn";
$message_part.= $this-> ;parts[$i]['body']."rn";
}else{
$message_part.= 'Content-Transfer-Encoding:base64'."rn";
$message_part.= 'Content-Disposition:attachment ; filename="'.$this->parts[$i]['name'].""rnrn";
$message_part.= chunk_split(base64_encode($this->parts[$i]['body'] ))."rn";
}
return $message_part;
}
/****************************************
**
** リストからマルチパートメッセージを構築します($this->parts).
**************************************/
function build_message(){
$boundary = '=_'.md5(uniqid(time()) );
$this->headers.= "MIME-Version: 1.0rn";
$this->headers.= "Content-Type: multipart/mixed; border="".$boundary.""rn ";
$this->multipart = '';
$this->multipart.= "これは MIME エンコードされたメッセージです。rn作成者: html_mime_mail.class.rnhttp://www.heyes-computing.net/scripts を参照/ コピー用。rnrn";
if(isset($this->do_html) AND $this->do_html == 1) $this->build_html($boundary);
if(isset($this ->body) AND $this->body != '') $this->parts[] = array('body' => $this->body, 'name' => '', 'c_type' => 'text/plain');
for($i=(count($this->parts)-1); $i>=0; $i--){
$this- >multipart.= '--'.$boundary."rn".$this->build_part($i);
}
$this->mime = $this->multipart."--" .$boundary."--rn";
}
/***************************************
** メールを送信します
***** *********************************/
function send($to_name, $to_addr, $from_name, $from_addr, $subject = '', $headers = '') {
if($to_name != '') $to = '"'.$to_name.'" <'.$to_addr.'>';
else $to = $to_addr;
if($from_name ! = '') $from = '"'.$from_name.'" <'.$from_addr.'>';
else $from = $from_addr;
$this->headers.= 'From: '。 $from."rn";
//$this->headers.= $headers;
mail($to, $subject, $this->mime, $this->headers);
}
/ ****************************************
** ダイレクトでお届けする場合はこちらの方法をご利用ください
** SMTP接続。 Manuel Lemos の
** smtp メール配信クラスに依存しています:
** http://phpclasses.upperdesign.com
**
** void smtp_send( string *Name* of smtp object,
** string From address 、
** 配列 To アドレス、
** 配列 ヘッダー、
** 文字列 本文)
**************************** ***********/
function smtp_send($smtp_obj, $from_addr, $to_addr){
global $$smtp_obj;
$smtp_obj = $$smtp_obj;
if(substr($this->headers, -2 ) == "rn") $this->headers = substr($this->headers,0,-2);
$this->headers =explode("rn", $this->headers) ;
$smtp_obj->sendmessage($from_addr, $to_addr, $this->headers, $this->mime);
}
} // クラス終了
?>