画像ファイルが含まれていない場合: $mail = new html_mime_mail() $html ="HTML コンテンツ"; $mail->build_message(); (受信者、受信メール、送信者、送信メール、タイトル、追加ヘッダー);
画像ファイルが含まれる場合: $url="www.cuti.com.my/AD/" //画像ファイルの場所?FONT color =" #007700">} ?FONT color="#007700">} ヘッダーなし http:// と末尾のスラッシュ $path="/MAIL/AD/"; //画像ファイルのパスの末尾にスラッシュがあります$filename1 = a.jpg; $backgrnd1 = fopen($path.$filename1, r), fclose($fp); $filename6 = f .gif; $backgrnd6 = fopen($path.$filename6, r), $mail->add_html_image($); backgrnd1,$ filename1, image/jpeg,http://.$url.$filename1); ...など... $mail->add_html_image($backgrnd6,$filename6,image/gif,http:// .$url .$ filename6); $mail = new html_mime_mail() $html ="画像を含む HTML コンテンツ" $mail->build_message(); >send( 受信者、受信メール、送信者、送信メール、タイトル、追加ヘッダー); } /*************************************** ** タイトル.........: HTML Mime Mail クラス ** バージョン....: 1.26 ** 作成者....: Richard Heyes
** ファイル名....: html_mime_mail.class ** 最終変更日.. : 2000/06/25 ** 注....: Tobias Ratschiller ** と Sascha Schumann による mime_mail.class ** に基づいています。 ** - Win32 用の修正 ** を提供してくれた Thomas Flemming に感謝します。 ** - ヘッダーが LF ではなく CRLF で終了するようになり、** RFC822 に準拠しました。 Pao-Hsi Huang に感謝します。 ** - バグを修正しました。特定のメール システム (特に gmx.net) ** は、境界線の等号の両側 ** にスペース文字があるためにメールを拒否していました。通知してくれた ** Peter Holm に感謝します。 ** - バグを修正しました。 $html_images は配列であるかどうかテストされました ** が、オブジェクトの作成時に配列に設定されたため、** テストは常に true を返しました。 ** 通知してくれた Bob Silva に感謝します。 ** - バグを修正しました。 $obj->send() でループすると、From: ヘッダー ** が蓄積していました。残念だ。 ** 通知してくれた Lance Rasmussen に感謝します。 ** - サンプル スクリプトを含む zip/tar ** については、http://www.heyes-computing.net/scripts/ を参照してください。 **************************************/ class html_mime_mail{ var $headers; var $body; var $multipart; var $mime; var $html; var $html_text; var $html_images = array(); var $parts = array(); { $this->headers = $headers; } /*************************************** ** コンストラクター関数。ヘッダーが指定されている場合は ** を設定します。 **************************************/ function add_html($html, $text){ $this->html = $html; html_text = $text; if(is_array($this->html_images) AND count($this->html_images) > 0){ /* for($i=0; $ihtml_images){ $this - > html = ereg_replace($this->html_images[$i][名前], cid:.$this->html_images[$i][cid], $this->html); } */ } } /** ************************************* ** メールに HTML 部分を追加します。 ** また、画像名を ** コンテンツ ID に置き換えます。 **************************************/ function build_html($orig_boundary){ $sec_boundary = =_.md5(uniqid(time())); $thr_boundary = =_.md5(uniqid(time())); > html_images) == 0){ $this->multipart.= --.$orig_boundary "
"; $this->multipart.= Content-Type: multipart/alternative;.chr(10).chr(9).boundary=".$sec_boundary ""
"; // $this->multipart.= --.$thr_boundary の下に ttj を追加します。 "
"; $this->multipart.= Content-Type: text/plain."
"; $this->multipart.= $this->html_text. "
"; $this->multipart.= --.$thr_boundary. "--
"; // ttj が $this->multipart.= --.$sec_boundary の上に追加されました。 "
"; $this->multipart.= Content-Type: text/plain."
"; $this->multipart.= コンテンツ転送エンコーディング: Base64。"
"; $this->multipart.= chunk_split(base64_encode($this->html_text))。"
"; // $this->multipart.= --.$thr_boundary の下に ttj を追加します。 "
"; $this->multipart.= Content-Type: text/html. "
"; $this->multipart.= $this->html. "
"; $this->multipart.= --.$thr_boundary. "--
"; // ttj が $this->multipart.= --.$sec_boundary の上に追加されました。 "
"; $this->multipart.= Content-Type: text/html. "
"; $this->multipart.= コンテンツ転送エンコーディング: Base64。"
"; $this->multipart.= chunk_split(base64_encode($this->html))."
"; $this->multipart.= --.$sec_boundary. "--
"; }else{ $this->multipart.= --.$orig_boundary. 」
"; $this->multipart.= Content-Type: multipart/relative;.chr(10).chr(9).boundary=".$sec_boundary. 「」
"; $this->multipart.= --.$sec_boundary. "
"; $this->multipart.= Content-Type: multipart/alternative;.chr(10).chr(9).boundary=".$thr_boundary. 「」
"; $this->multipart.= --.$thr_boundary. "
"; $this->multipart.= Content-Type: text/plain."
"; $this->multipart.= コンテンツ転送エンコーディング: Base64。"
"; $this->multipart.= chunk_split(base64_encode($this->html_text))。"
"; // $this->multipart.= --.$thr_boundary の下に ttj を追加します。 "
"; $this->multipart.= Content-Type: text/html. "
"; $this->multipart.= $this->html. "
"; $this->multipart.= --.$thr_boundary. "--
"; // ttj が $this->multipart.= --.$thr_boundary の上に追加されました。 "
"; $this->multipart.= Content-Type: text/html. "
"; $this->multipart.= コンテンツ転送エンコーディング: Base64。"
"; $this->multipart.= chunk_split(base64_encode($this->html))。"
"; $this->multipart.= --.$thr_boundary. "--
"; for($i=0; $ihtml_images); $i++){ $this->multipart.= --.$sec_boundary. "
"; $this->build_html_image($i); } $this->multipart.= "--".$sec_boundary. "--
"; } } /*************************************** ** 埋め込まれた ** 画像のリストに画像を追加します。 **************************************/ function add_html_image($file, $name = , $c_type= application/octet-stream, $location= ){ $this->html_images[] = array( body => $ファイル、名前 => $name、c_type => $c_type、場所 => $location、cid => md5(uniqid(time())) ); /*************************************** ** 添付ファイルのリストにファイルを追加します。 **************************************/ function add_attachment($file, $ name = , $c_type= application/octet-stream){ $this->parts[] = array( body => $file, name => $name, c_type => $c_type ); / 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][名前]。 「」
"; else $this->multipart .= "
"; $this->multipart.= コンテンツ転送エンコーディング: Base64。"
"; $this->multipart.= Content-Location:.$this->html_images[$i][location]. "
"; $this->multipart.= コンテンツ ID: <.>html_images[$i][cid]. ">
"; $this->multipart.= chunk_split(base64_encode($this->html_images[$i][body]))."
"; } /*************************************** ** ** HTML メールの埋め込み画像部分を構築します。 **************************************/ function build_part($i){ $message_part = ; $message_par
http://www.bkjia.com/PHPjc/531886.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/531886.html技術記事結果不含圖檔: $mail = new html_mime_mail(); $html =HTML內容; $mail->add_html($html, $text); $mail->build_message(); $mail->send(收信人,收信Email,發信人,發信Email,標...