Hi friends, I wanna send an E-mail from my asp.net form... My code is......
MailMessage m = new MailMessage();
m.From = new MailAddress("rkrishnan111@yahoo.co.in", "RK");
m.To.Add(new MailAddress("rkrishnan111@yahoo.co.in", "KRISHNAN"));
m.Subject = "Hello";
m.Body = "hi";
m.IsBodyHtml = true;
SmtpClient client = new SmtpClient("smtp.mail.yahoo.com");
client.Send(m);
But i got the following error message,
The SMTP server requires a secure connection or the client was not authenticated. The server response was: authentication required - for help go to http://help.yahoo.com/help/us/mail/pop/pop-11.html
What should i do...?
