mail sending problem through gmail account
-
hi, i m using asp.net c# and i m trying to send mail via gmail account code is MailMessage message = new MailMessage(); message.From = new MailAddress("prtaeekfgiet@gmail.com"); message.To.Add(new MailAddress("rma.maksat@gmail.com")); //message.To.Add(new MailAddress("recipient2@foo.bar.com")); //message.To.Add(new MailAddress("recipient3@foo.bar.com")); //message.CC.Add(new MailAddress("carboncopy@foo.bar.com")); message.Subject = "This is my subject"; message.Body = "This is the content"; SmtpClient client = new SmtpClient(); client.Send(message); <system.net> <mailSettings> <smtp from="prateekfgiet@gmail.com"> <network host="smtp.gmail.com" port="587" userName="prateekfgiet" password="password" defaultCredentials="true" /> </smtp> </mailSettings> but its give error error is System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first. k2sm932784rvb.8 pls help me
-
hi, i m using asp.net c# and i m trying to send mail via gmail account code is MailMessage message = new MailMessage(); message.From = new MailAddress("prtaeekfgiet@gmail.com"); message.To.Add(new MailAddress("rma.maksat@gmail.com")); //message.To.Add(new MailAddress("recipient2@foo.bar.com")); //message.To.Add(new MailAddress("recipient3@foo.bar.com")); //message.CC.Add(new MailAddress("carboncopy@foo.bar.com")); message.Subject = "This is my subject"; message.Body = "This is the content"; SmtpClient client = new SmtpClient(); client.Send(message); <system.net> <mailSettings> <smtp from="prateekfgiet@gmail.com"> <network host="smtp.gmail.com" port="587" userName="prateekfgiet" password="password" defaultCredentials="true" /> </smtp> </mailSettings> but its give error error is System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first. k2sm932784rvb.8 pls help me
Check out this post http://social.msdn.microsoft.com/forums/en-US/netfxnetcom/thread/26745216-962b-47db-bf13-4f2b159731ba/[^]
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep!