5
Answers

mail sending failed

Ask a question
in offline i can send mail but  in  online itdoesnt send
code is  in below
 string vbody = "Thank you for your valueble feedback. Soon we will reach to you! <br/>";
            vbody = vbody + "With Regards <br/>";
            vbody = vbody + "Support Team -";
            vbody = vbody + "BOOK MOVIE TICKET";
            MailMessage msg = new MailMessage();
            msg.To.Add(txt_email.Text);
            msg.From = new MailAddress("urusername", "Book Movie Ticket Help Desk");
            msg.IsBodyHtml = true;
            msg.Body = vbody;
            msg.Subject = "Thank you for your feedback";


            SmtpClient smtp = new SmtpClient("smtp.gmail.com");
            smtp.EnableSsl = true;

           
            smtp.Port = 587;
            smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
            smtp.Credentials = new NetworkCredential("urusername"
, "password");
            smtp.Send(msg);
            msg = null;


but no error come

Answers (5)