Mail Test : Mail : Network C# Source Code


Custom Search

C# Source Code » Network » Mail »

 

Mail Test








    


using System;
using System.Net;
using System.Web.Mail;

public class MailTest
{
   public static void Main()
   {
      string from = "from@from.net";
      string to = "to@to.net";
      string subject = "This is a test mail message";
      string body = "Hi .";

      SmtpMail.SmtpServer = "192.168.1.150";
      SmtpMail.Send(from, to, subject, body);
   }
}


           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Network
» Mail