程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 網上找到的兩個PHP發送郵件的例子,很不錯,貼出來給初學者參考吧不知道是否有兄弟曾貼過,呵呵1

網上找到的兩個PHP發送郵件的例子,很不錯,貼出來給初學者參考吧不知道是否有兄弟曾貼過,呵呵1

編輯:關於PHP編程

Send Mail in PHP In this example, we will show how to send an email message to someone in PHP. PHP Code: "; mail ("[email protected]", "Subject", "Hello!"); echo "Sending mail..."; echo ""; ?> It is that simple! The PHP mail function has up to four parameters. The first parameter is the recipient of the message. The second parameter is the subject of the email message. The third parameter is the body of the message. And the fourth parameter is optional, which will be covered on the next page. If the above example does not work when you view it in your browser then the Sendmail variable in your PHP setup file is probably not set correctly. In UNIX, it should be set to something like /usr/sbin/sendmail -t. Consult your PHP documentation for more in depth instructions.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved