Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to send mail in asp.net

Answer Posted / deep

MainMessage message = new MailMessage();
message.From = <email>;
message.To = <email>;
message.Subject= "Subject of the Message";
message.Body = "Body Text";
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(message);

MailMessage & SmtpMail are classes defined in ASP.Net FCL (Framework Class Library). In addition to the above, you must use IIS configuration applet to enable localhost to relay messages through the SMTP service.

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the procedure to handle the process request using mhpm events fired? : asp.net mvc

1065


What is the difference between application state and session state in asp net?

1095


What is ViewState? What does the "EnableViewState" property do? Why would I want it on or off?

1173


Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?

1054


I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)

2047


Can I combine classic asp and asp.net pages?

1143


Explain why it is useful to use mvc instead of webforms? : asp.net mvc

1108


What is the difference between session.abandon() vs clear()?

1021


Define authentication and authorization.

1140


Explain Optimization technique description?

1087


Why do we need asp.net?

1058


What is the basic difference between asp and asp.net?

1078


What is session state server?

1206


How do cookies work? Give an example of their abuse.

1019


Apart from IDE what are the enhancements in asp.net 2.0?

2158