程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 資料注冊後發信小技巧

資料注冊後發信小技巧

編輯:PHP綜合
<?php
//mail.php
//讀信內容
$filename = "wellcom.txt";
$fd = fopen( $filename, "r" );
$contents = fread($fd, filesize($filename));
fclose( $fd );

//替換其中相應內容
$contents=eregi_replace("<username>",$UserName,$contents);
$contents=eregi_replace("<password>",$Password,$contents);
$contents=eregi_replace("<url>",$Url,$contents);

//發信
$to_email=$email;
$from_email="[email protected]";
$subject="Wellcom!";
$header_info="From:$from_email\nReply-To:$from_email";
$result=@mail($to_email,$subject,$contents,$header_info);
if($result) {
echo "發信成功!";
} else {
echo "發信失敗!";
}
?>

//wellcom.txt內容;
您的注冊資料為:
用戶名:<username>
密碼:<password>

歡迎您的到來!

歡迎訪問:<url> 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved