Simplest Way of Sending Email from Gmail : Email « Components « ASP.Net

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » Components » Email 
Simplest Way of Sending Email from Gmail


// Code by 'dotnetguts at gmail.com'


  protected void btnSendEmail_Click(object sender, EventArgs e)
      {
    //Create Mail Message Object with content that you want to send with mail.
          System.Net.Mail.MailMessage MyMailMessage = new         System.Net.Mail.MailMessage("[email protected]","[email protected]"
      "This is the mail subject""Just wanted to say Hello");
        
          MyMailMessage.IsBodyHtml = false;
 
    //Proper Authentication Details need to be passed when sending email from gmail
          System.Net.NetworkCredential mailAuthentication = new          
    System.Net.NetworkCredential("[email protected]""myPassword");
 
    //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);
      }
           
       
Related examples in the same category
1.Send out email in code behind (C#)
2.Send out an Email
3.Send email with attached file
4.Send email out through asp:form
5.Send email to all employees in database
6.Send email with html form message
7.Email message in a html format
8.Email form with cc and bcc
9.Email with priority
10.Send email function
11.Email with pictures
12.Email with attachment
13.Send email with more than one attachments
14.Send out an email in case of page error
15.Send an email
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.