ecs_mail_templates郵件模板表中插入一條注冊發(fā)送郵件的記錄。INSERT INTO ecs_mail_templates" />

花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

ecshop會員注冊自動發(fā)送郵件歡迎信息修改方法

時間: 2024-02-25 10:43 閱讀: 作者:素材無憂網(wǎng)

步驟一: 數(shù)據(jù)庫->ecs_mail_templates郵件模板表中插入一條注冊發(fā)送郵件的記錄。
INSERT INTO ecs_mail_templates (template_id, template_code, is_html, template_subject, template_content, last_modify, last_send, type) VALUES ('', 'send_reg', '1', 'ECSHOP素材無憂-歡迎信息', '尊敬的{$user_name},感謝您注冊成為{$shop_name}的會員!
請您在發(fā)表言論時,遵守當?shù)胤煞ㄒ?guī)。

如果您有什么疑問可以聯(lián)系管理員,Email: [email protected]。
{$shop_name}
{$send_date}', '13888888888', '0', 'template');
第二步:在語言文件 languages/zh_cn/admin/mail_template.php /* 模板描述 */下添加
$_LANG['send_reg'] = '歡迎信息模板';
第三步:增加PHP處理邏輯
flow.php和user.php中均有會員注冊邏輯,所以這兩個文件都要增加郵件發(fā)送代碼
flow.php 大概286行->elseif (!empty($_POST['act']) && $_POST['act'] == 'signup') 里面增加如下代碼:
/* 注冊會員郵件歡迎 */$tpl = get_mail_template('send_reg');$smarty->assign('shop_name', $_CFG['shop_name']);$smarty->assign('send_date', date($_CFG['time_format']));$smarty->assign('user_name',$username);$content = $smarty->fetch('str:' . $tpl['template_content']);send_mail($_CFG['shop_name'], $email, $tpl['template_subject'], $content, $tpl['is_html']);
user.php 大概234行->/* 寫入密碼提示問題和答案 */這個判斷的下面增加如下代碼:
/* 注冊會員郵件歡迎 */$tpl = get_mail_template('send_reg');$smarty->assign('shop_name', $_CFG['shop_name']);$smarty->assign('send_date', date($_CFG['time_format']));$smarty->assign('user_name',$username);$content = $smarty->fetch('str:' . $tpl['template_content']);send_mail($_CFG['shop_name'], $email, $tpl['template_subject'], $content, $tpl['is_html']);

版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: ecshop會員注冊自動發(fā)送郵件歡迎信息修改方法

標簽: ecshop會員  
相關(guān)文章
推薦文章
模板推薦