how to send an email using my yahoo account!!!
thanks in advance
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Benjamin KemnerPosted Sep 6, 2011, 5:27 AM
m.From = new MailAddress("[email protected]", "Your Name");
m.To.Add(new MailAddress("[email protected]", "Recipient Name"));
m.Subject = "Hello";
m.Body = "
My Message
Put the body here.";
m.IsBodyHtml = true;
SmtpClient client = new SmtpClient("smtp.mail.yahoo.com");
client.Send(m);
It was discussed via stackoverflow.
http://stackoverflow.com/questions/684454/how-to-send-mail-from-yahoo-mail-id-in-vb-net-or-c-net-code
Mittal SejpalPosted Sep 6, 2011, 6:04 AM
Mittal SejpalPosted Sep 6, 2011, 5:54 AM