Postal

Create email using ASP.NET MVC views

SMTP Configuration

Postal sends email using the .NET Framework’s built-in SmtpClient.

You can configure this in your Web.config file. See the MSDN documentation for more details.

<configuration>
  ...
  <system.net>
    <mailSettings>
      <smtp deliveryMethod="network">
        <network host="example.org" port="25" defaultCredentials="true"/>
      </smtp>
    </mailSettings>
  </system.net>
  ...
</configuration>