一般在采用dedecms做訂單系統(tǒng)的時候,用戶默認(rèn)的訂單提交都只能在后臺看到的,因此每次都要登陸到后臺去查看,非常的麻煩。本文講解了如何將提交的訂單直接發(fā)送到站長郵箱,分享給大家。
打開根目錄plus下面的diy.php文件:
大概在85行找到代碼:
代碼如下:$query = "INSERT INTO `{$diy->table}` (`id`, `ifcheck` $addvar) VALUES (NULL, 0 $addvalue); ";
在此代碼后面開始加入代碼:
代碼如下:$mailtitle = $name."提交表單通知";
$mailbody = "稱呼:{$name}rn郵箱:{$email}rn內(nèi)容:{$message}";
$headers = $cfg_adminemail;
$mailtype = 'TXT';
require_once(DEDEINC.'/mail.class.php');
$smtp = new smtp($cfg_smtp_server,$cfg_smtp_port,true,$cfg_smtp_usermail,$cfg_smtp_password);
$smtp->debug = false;
$smtp->sendmail($cfg_smtp_usermail,$cfg_webname ,$cfg_smtp_usermail, $mailtitle, $mailbody, $mailtype);
其中$mailbody = "稱呼:{$name}rn郵箱:{$email}rn內(nèi)容:{$message}";就是在自定義表單中添加自定義字段的名稱和id。
更多信息請查看IT技術(shù)專欄