Loading....
Recent Article links:

facebook

Dasun Wickasitha's Facebook profile

Fun with .NET

Article

Send Email from Gmail in .net

try

{

//Create Mail Message Object with content that you want to send with mail.

System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage(”from@yourdomain.com”, “to@yourdomain.com”,

“This is the mail subject”, “This is the mail body”);

MyMailMessage.IsBodyHtml = false;

//Proper Authentication Details need to be passed when sending email from gmail

System.Net.NetworkCredential mailAuthentication = new

System.Net.NetworkCredential(”yourgmail”, “yourpassword”);

//Smtp Mail server of Gmail is “smpt.gmail.com” and it uses port no. 587

//For different server like yahoo this details changes and you can

//get it from respective server.

System.Net.Mail.SmtpClient mailClient = new System.Net.Mail.SmtpClient(”smtp.gmail.com”, 587);

//Enable SSL

mailClient.EnableSsl = true;

mailClient.UseDefaultCredentials = false;

mailClient.Credentials = mailAuthentication;

mailClient.Send(MyMailMessage);

}

catch (Exception ex)

{

MessageBox.Show(ex.Message);

}

kick it on DotNetKicks.com

Rate this:
0.0
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Facebook
  • Google Bookmarks
  • Live-MSN
  • YahooMyWeb
  • DotNetKicks

Comments (No comments)

What do you think?

Subscribe

Everything for free

Archives

Visitors

ACF loading animated gif