Configuring SMTP settings in web.config

In order to use eNews and other SiteAdmin CMS modules that sending email notifications you need to setup your web.config for SMTP services.

Below you will find an example prepared for TotallyWebsites and Skitsanos Hosting service providers (IIS SMTP services running on port 2525):

<system.net>
    <mailSettings>
      <smtp deliveryMethod="Network">
        <network host="localhost" port="2525" />
      </smtp>
    </mailSettings>
  </system.net>