需要快速收录的请联系QQ:2303230985
当前位置:SEO网站目录 » 站长资讯 » 网站运营 » 文章详细 订阅RssFeed

DTcms留言插件邮件通知功能升级

来源:互联网 浏览:2989次 时间:2017-01-13

你是否也遇到过网站留言几个月才看到,针对于这一问题,我们把原有的DTcms留言插件升级一下,加入邮件通知功能,当有人留言时,系统自动发送封邮件到您常用的邮箱或者发送手机短信。

1.jpg

留言配置管理界面

现在我们开始改造工程吧:

1、首先第一步,添加config目录

2.jpg

2、在config目录下添加一个名为“install.config”的配置文件,添加如下代码

<?xml version="1.0"?>
<install xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <bookmsg>2</bookmsg>
  <booktemplet>wordsmsg</booktemplet>
  <receive>271877887@qq.com</receive>
</install>

3、在model.cs文件中添加配置文件模型。

[Serializable]
public partial class install
{
    public install()
    { }
    private int _bookmsg = 0;
    private string _booktemplet = "";
    private string _receive = "";
    /// <summary>
    /// 通知
    /// </summary>
    public int bookmsg
    {
        set { _bookmsg = value; }
        get { return _bookmsg; }
    }
    /// <summary>
    /// 通知模板别名
    /// </summary>
    public string booktemplet
    {
        set { _booktemplet = value; }
        get { return _booktemplet; }
    }
    /// <summary>
    /// 接收邮箱或手机
    /// </summary>
    public string receive
    {
        set { _receive = value; }
        get { return _receive; }
    }
}

4、在dal.cs文件中添加配置文件操作方法。

/// <summary>
/// 数据访问类:配置文件
/// </summary>
public partial class install
{
    private static object lockHelper = new object();
    public install()
    {
    }
    #region 扩展设置参数
    /// <summary>
    ///  读取站点配置文件
    /// </summary>
    public Model.install loadConfig(string configFilePath)
    {
        return (Model.install)SerializationHelper.Load(typeof(Model.install), configFilePath);
    }
    /// <summary>
    /// 写入站点配置文件
    /// </summary>
    public Model.install saveConifg(Model.install model, string configFilePath)
    {
        lock (lockHelper)
        {
            SerializationHelper.Save(model, configFilePath);
        }
        return model;
    }
    #endregion
}

4、在bll.cs文件中添加以下方法。

/// <summary>
/// 配置文件
/// </summary>
public partial class install
{
    private readonly DAL.install dal;
    public install()
    {
        dal = new DAL.install();
    }
    /// <summary>
    ///  读取配置文件
    /// </summary>
    public Model.install loadConfig(string config_path)
    {
        string cacheName = "gs_cache_feedback_config";
        Model.install model = CacheHelper.Get<Model.install>(cacheName);
        if (model == null)
        {
            CacheHelper.Insert(cacheName, dal.loadConfig(Utils.GetMapPath(config_path)), Utils.GetMapPath(config_path));
            model = CacheHelper.Get<Model.install>(cacheName);
        }
        return model;
    }
    /// <summary>
    ///  保存配置文件
    /// </summary>
    public Model.install saveConifg(Model.install model, string config_path)
    {
        return dal.saveConifg(model, Utils.GetMapPath(config_path));
    }
}

5、在admin目录下添加install.aspx文件。用作管理操作界面;

6、修改“ajax.ashx”文件,在“feedback_add”方法中添加发送方法;在修改方法之前要预先读取配置文件

Model.install config = new BLL.install().loadConfig("../config/install.config");

7、修改“ajax.ashx”文件第89行,添加如下方法

//是否开启通知功能
if (config.bookmsg > 0 && config.receive !="")
{
    switch (config.bookmsg)
    {
        case 1:
            DTcms.Model.sms_template smsModel = new DTcms.BLL.sms_template().GetModel(config.booktemplet); //取得短信内容
            if (smsModel != null)
            {
                //替换模板内容
                string smstxt = smsModel.content;
                smstxt = smstxt.Replace("{webname}", siteConfig.webname);
                smstxt = smstxt.Replace("{webtel}", siteConfig.webtel);
                smstxt = smstxt.Replace("{weburl}", siteConfig.weburl);
                smstxt = smstxt.Replace("{username}", model.user_name);
                smstxt = smstxt.Replace("{usertel}", model.user_tel);
                smstxt = smstxt.Replace("{userqq}", model.user_qq);
                smstxt = smstxt.Replace("{useremail}", model.user_email);
                smstxt = smstxt.Replace("{usertitle}", model.title);
                smstxt = smstxt.Replace("{usercontent}", model.content);
                //发送短信
                string tipMsg = string.Empty;
                bool result = new DTcms.BLL.sms_message().Send(config.receive, smstxt, 1, out tipMsg);
                if (!result)
                {
                    //LogHelper.WriteLog("手机信息发送失败!");
                }
            }
            break;
        case 2:
            //获得邮件内容
            DTcms.Model.mail_template mailModel = new DTcms.BLL.mail_template().GetModel(config.booktemplet);
            if (mailModel != null)
            {
                //替换模板内容
                string titletxt = mailModel.maill_title;
                string bodytxt = mailModel.content;
                titletxt = titletxt.Replace("{webname}", siteConfig.webname);
                titletxt = titletxt.Replace("{username}", model.user_name);
                bodytxt = bodytxt.Replace("{webname}", siteConfig.webname);
                bodytxt = bodytxt.Replace("{webtel}", siteConfig.webtel);
                bodytxt = bodytxt.Replace("{weburl}", siteConfig.weburl);
                bodytxt = bodytxt.Replace("{username}", model.user_name);
                bodytxt = bodytxt.Replace("{usertel}", model.user_tel);
                bodytxt = bodytxt.Replace("{userqq}", model.user_qq);
                bodytxt = bodytxt.Replace("{useremail}", model.user_email);
                bodytxt = bodytxt.Replace("{usertitle}", model.title);
                bodytxt = bodytxt.Replace("{usercontent}", model.content);
                //循环发送
                string[] emailArr = config.receive.Split(',');
                foreach (string email in emailArr)
                {
                    if (DTcms.Common.Utils.IsValidEmail(email))
                    {
                        //发送邮件
                        try
                        {
                            DTMail.sendMail(siteConfig.emailsmtp, siteConfig.emailssl,
                                siteConfig.emailusername,
                                DESEncrypt.Decrypt(siteConfig.emailpassword, siteConfig.sysencryptstring),
                                siteConfig.emailnickname,
                                siteConfig.emailfrom,
                                email,
                                titletxt, bodytxt);
                        }
                        catch
                        {
                            //LogHelper.WriteLog("邮件发送失败!");
                        }
                    }
                }
            }
            break;
    }
}

到此我们的网站留言功能就升级完成了。注意,邮件通知、短信通知都必须先配置系统参数才可以正常使用。

3.jpg

最新点入

  • 全球網址提交網全球網址提交網

    全球網址提交網是全免費的網址提交目錄,收錄國內外、各行業優秀網站,為用戶提供全面的網站分類目錄網站、優秀網站參攷、友情連結交換平臺、網站推廣服務國內免費的網站提交入口(www.urlglobalsubmit.com)。

    www.urlglobalsubmit.com
  • 国际电子商务网国际电子商务网

    欢迎访问国际电子商务网,这里有各行业信息网/B2B电子商务网站,是最方便的免费网络推广平台,已成为无数商家网络营销/网络推广的首选网站!

    www.intbtb.com
  • SEO网站目录SEO网站目录

    SEO网站目录是全人工编辑的开放式网站分类目录,收录快、快照新,收录国内外、各行业优秀网站,旨在为用户提供网站分类目录检索、优秀网站参考、网站推广服务。

    https://www.seo123.net
  • 阳光游戏阳光游戏

    阳光游戏网为玩家提供新的网络游戏,单机游戏,手机游戏,手游等资源,经过多年努力已成为游戏玩家首要选择的游戏资讯、游戏资源网站。

    www.shiciwang.com.cn
  • 优雅导航优雅导航

    优雅导航--优雅导航(ndyywz.com)-创建于2020年4月13日。作为网站推广平台,致力为广大站长、网友提供优质、优雅网站链接。优雅导航免费收录高质量网站。

    www.ndyywz.com

推荐站点

  • SEO网站目录SEO网站目录

    SEO网站目录是全人工编辑的开放式网站分类目录,收录快、快照新,收录国内外、各行业优秀网站,旨在为用户提供网站分类目录检索、优秀网站参考、网站推广服务。

    https://www.seo123.net
  • 中国天气网中国天气网

    中国天气网官方权威发布天气预报,逐三小时天气预报,提供天气预报查询一周,天气预报15天查询,空气质量,生活指数,旅游出行,交通天气等查询服务

    www.weather.com.cn
  • 天极网天极网

    天极网,全球最大的中文IT门户,专注IT产品采购及应用指南,每天为广大用户提供电脑硬件,软件,数码,商情,手机,笔记本,游戏,互联网,数字家庭,教育,下载等内容,解决网友工作学习中的技术疑难,指导数字科技消费,领引时尚生活潮流.

    www.yesky.com
  • 华军软件园华军软件园

    华军软件园提供国内外最新的免费软件、共享软件下载及发布的软件下载站,包含系统软件、网络工具、杀毒安全、图形图像、媒体工具、管理软件、桌面工具、教育教学、游戏娱乐、硬件相关等软件下载,另外涉及软件行业资讯、软件使用技巧、相关软件评测、软件使用教程等相关软件行业的综合软件网站!

    www.onlinedown.net
  • ZOL下载ZOL下载

    软件下载频道(消费类软件门户媒体)提供网络软件、杀毒软件、聊天工具、系统工具、媒体播放、输入法、QQ工具、手机主题和驱动等丰富的绿色软件下载,互联网软件资源共享的宝藏!-中关村在线软件频道!

    xiazai.zol.com.cn