Showing all posts tagged: 'Smtp'

A 1-post collection

Using an Smtp client in ASP.NET MVC 4 and C#

If you need to send emails from your website, the .NET framework provides a very handy library for this:  System.Net.Mail. The configuration and testing is pretty straightforward so let’s get started. Firstly we need to configure the SMTP settings in the web.config. Under the <configuration> element add the following config section: <system.net> <mailSettings> <!-- Method#1: Send emails over the network --> <smtp deliveryMethod="Network" from="[email protected]"> <network host="your_smpt_server_dns_name" userName="your_smpt_server_username" password="your_smpt_ …[read more]