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

Mandar mail con ASP.NET 2.0 (See related posts)

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>

You need to create an account or log in to post comments to this site.


Click here to browse all 5146 code snippets

Related Posts