Posted on: 10/21/2014 3:37:59 PM | Views : 448

I have been working on for this issue for hours .Though my crediantals are correct I cant send mail from gmail account to hotmail account
this is the exception
Mailbox unavailable. The server response was: 5.7.3 Requested action aborted; user not authen.. Please somebody help me
private void button1_Click(object sender, EventArgs e) {   SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");            var mail = new MailMessage();            mail.From = new MailAddress("MYgmail@gmail.com");            mail.To.Add("sento@hotmail.com");            mail.Subject = "Your Sub";        &n ...

Go to the complete details ...