Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Edgardo Rossetto

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Mandar mail con ASP.NET 2.0

C#
MailMessage message = new MailMessage();
message.From = new MailAddress("remitente@lo.que.sea");
message.To.Add(new MailAddress("destinatario@lo.que.sea"));
message.Subject = "Asunto";
message.Body = "Cuerpo";
SmtpClient client = new SmtpClient();
client.Send(message);


web.config
<system.net>
    <mailSettings>
        <smtp from="email@algo.com">
            <network host="localhost" port="25" defaultCredentials="true" />
        </smtp>
    </mailSettings>
</system.net>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS