public static string MailGonder(string gidecekMailAdresi, string baslik, string mesaj)
        {
            string MailAdresi = Partial.Ayar("MailAdresi");
            string SiteAdresi = Partial.Ayar("SiteAdresi");
            string MailSifresi = Partial.Ayar("MailSifresi");
            bool MailSsl = Convert.ToBoolean(Partial.Ayar("MailSsl"));
            string SMTPAdresi = Partial.Ayar("SMTPAdresi");
            string Port = Partial.Ayar("Port");

            if(String.IsNullOrEmpty(gidecekMailAdresi))
            {
                gidecekMailAdresi = MailAdresi;
            }

            MailMessage message = null;
            try
            {
                message = new MailMessage(MailAdresi, gidecekMailAdresi);
                message.Subject = baslik + " " + SiteAdresi;
                //message.CC.Add("info@antalyacarhire.com");
                message.Body = mesaj;
                message.IsBodyHtml = true;

                SmtpClient client = new SmtpClient(SMTPAdresi, Convert.ToInt32(Port));
                client.UseDefaultCredentials = false;
                client.Credentials = new System.Net.NetworkCredential(MailAdresi, MailSifresi);
                client.DeliveryMethod = SmtpDeliveryMethod.Network;
                client.EnableSsl = MailSsl;

                client.Send(message);
            }
            catch (Exception ex)
            {
               return ex.Message;
            }

            if (message != null)
            {
                message.Dispose();
            }
            return "";
        }
Yazar: Ali Karayel
Makale Tarihi: 07.11.2017 Gücellenme Tarihi: 07.11.2017

Yorum Yaz

Yorumlarınız denetimden geçtikten sonra yayınlanmaktadır...