Home >php教程 >php手册 >发现一个发送mime邮件的类2

发现一个发送mime邮件的类2

WBOY
WBOYOriginal
2016-06-13 10:27:262244browse

from = "your@address.com"; $mail->to = "recipient@remote.net"; $mail->subject = "歡迎!"; $mail->body = "這是真正的電子郵件訊息, 當然....你可以寫成一行以上。"; # 加上附檔 $mail->add_attachment($data, $filename, $content_type); # 送出電子郵件 $mail->send(); */ ?>

// by Hsu if (!preg_match("!^(http://)?" . getenv("SERVER_NAME") . "!", getenv("HTTP_REFERER")) || !preg_match("/^.+@.+..+/", $myemail)) { echo " "; } else { include "mime_mail.inc"; $filename = "php_logo.gif"; $content_type = "image/gif"; # 讀取磁碟裡的 JPEG 圖形 $fd = fopen($filename, "r"); $data = fread($fd, filesize($filename)); fclose($fd); # 建立物件實體 $mail = new mime_mail; # 設定所有項目 $mail->from = $myemail; $mail->to = $myemail; $mail->subject = "歡迎!"; $mail->body = "這是真正的電子郵件訊息, " . "當然....你可以寫成一行以上。"; # 加上附檔 $mail->add_attachment($data, $filename, $content_type); # 送出電子郵件 $mail->send(); echo "郵件已送出,請檢查您的信箱。"; } ?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn