How to Send Mail in C#.NET Window Application

  1. private void button1_Click(object sender, EventArgs e)  
  2. {  
  3.     sendEMailThroughHotMail();  
  4.     // sendEMailThroughGmail();  
  5. }  
  1. public void sendEMailThroughHotMail()   
  2. {  
  3.     try   
  4.     {  
  5.         //Mail Message  
  6.         MailMessage mM = new MailMessage();  
  7.         mM.From = new MailAddress("[email protected]");  
  8.         //receiver email id  
  9.         mM.To.Add("[email protected]");  
  10.         mM.Subject = "Text H2H Mail";  
  11.         File.Copy("D:\\ClientMgmtDb1.accdb""D:\\ClientMgmtDb21.accdb"true);  
  12.         mM.Attachments.Add(new Attachment(@  
  13.         "D:\\ClientMgmtDb21.accdb"));  
  14.         mM.Body = "Log_Fole";  
  15.         mM.IsBodyHtml = true;  
  16.         // SmtpClient sC = new SmtpClient("smtp.WorldClient.com");  
  17.         SmtpClient sC = new SmtpClient("192.168.100.10");  
  18.         // SmtpClient.UseDefaultCredentials = true;  
  19.         //mySmtpClient.Host = "192.168.100.10";  
  20.         sC.Port = 25;  
  21.         sC.Credentials = new NetworkCredential("[email protected]""pintoo@123");  
  22.         sC.EnableSsl = false;  
  23.         sC.Send(mM);  
  24.         MessageBox.Show("Mail send Fuccessfully..Thanks");  
  25.         mM.Dispose();  
  26.         File.Delete("D:\\ClientMgmtDb21.accdb");  
  27.     }   
  28.     catch (Exception ex)   
  29.     {  
  30.         MessageBox.Show("error");  
  31.     }  
  32. }