Example #1
0
        public bool SifreHatirlat(string m)
        {
            var uye = _uyeDal.Get(x => x.Mail == m);

            if (uye != null)
            {
                return(StaticOperations.MailGonder(m, "Şifre Hatırlatma", "Şifreniz : " + uye.Sifre, false));
            }
            return(false);
        }