示例#1
0
        public static bool ContactAdmin(CMS_ContactModels _ctInfo)
        {
            var ret = false;

            try
            {
                string lamodMail = ConfigurationManager.AppSettings["LamodeMail"];

                /* send mail to lamode */
                SendContentMail(lamodMail, _ctInfo.GetContactInfo(), _ctInfo.Name, "[Customer Contact]" + _ctInfo.Subject);

                /* send mail to customer */
                if (!string.IsNullOrEmpty(_ctInfo.Email))
                {
                    SendContentMail(_ctInfo.Email, _ctInfo.GetContactInfo(), _ctInfo.Name, "[Lamode Home]" + " thanks for contacting us " + _ctInfo.Subject);
                }

                ret = true;
            }
            catch (Exception ex) { }
            return(ret);
        }
示例#2
0
 public CMSLocationModels()
 {
     ContactDTO  = new CMS_ContactModels();
     LstDiscount = new List <CMS_DiscountModels>();
 }