1 / 13

PHP5&MySQL 程式設計

PHP5&MySQL 程式設計. 第 16 章 線上寄信服務與電子賀卡. 16-1  線上寄信服務. 16-1-1  前置作業. 使用 UltraEdit 開啟 C:php5php.ini 組態設定檔,然後設定下列參數: SMTP smtp_port sendmail_from sendmail_path. 16-1-2  安裝 SMTP 伺服器. 一、 使用 ISP 提供的 SMTP 伺服器 二、 自行架設 SMTP 伺服器. 安裝 SMTP 虛擬伺服器 ( 假設作業系統為 Windows XP Professional) :

Download Presentation

PHP5&MySQL 程式設計

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PHP5&MySQL程式設計 第 16 章 線上寄信服務與電子賀卡

  2. 16-1 線上寄信服務

  3. 16-1-1 前置作業 • 使用UltraEdit開啟C:\php5\php.ini組態設定檔,然後設定下列參數: • SMTP • smtp_port • sendmail_from • sendmail_path

  4. 16-1-2 安裝SMTP伺服器 一、 使用ISP提供的SMTP伺服器 二、 自行架設SMTP伺服器

  5. 安裝SMTP虛擬伺服器 (假設作業系統為Windows XP Professional): • 在 [控制台] 視窗的 [新增\移除程式] 圖示按兩下。

  6. 3. 4.

  7. 16-1-3 設定SMTP伺服器 1. 選按[開始] \ [設定] \ [控制台] \ [系統管理工具] \ [Internet Information Services]。 2.

  8. 3. 4.

  9. 5. 6.

  10. 7. 8.

  11. 9. 10.

  12. 16-2 使用mail() 函式傳送郵件 16-2-1 傳送純文字郵件 mail(string to, string subject, string message [, string headers [, string parameters]]) 16-2-2 傳送HTML格式的郵件

  13. 16-2-3 傳送郵件給副本及密件副本收件者 • 我們已經介紹過MIME-Version和Content-type標頭資訊的用途,本節將告訴您下列幾個標頭資訊的用途: • To:用來指定收件人的電子郵件地址,如果有多個收件人,必須使用逗號 (,) 隔開,例如 “rong@ms17.url.com.tw, jeanchen@mail.ht.net.tw”。 • From:用來指定寄件者的電子郵件地址,From支援 “陳俊榮<rong@ms17.url.com.tw>”這種格式。 • Cc:用來指定副本收件者的電子郵件地址,如果有多個收件人,必須使用逗號 (,) 隔開 。 • Bcc:用來指定密件副本收件者的電子郵件地址,如果有多個收件人,必須使用逗號 (,) 隔開 。 • Reply-To:用來指定回信的電子郵件地址,Reply-To郵件標頭資訊支援 "陳俊榮<rong@ms17.url.com.tw>" 這種格式。

More Related