Knowledge Essentials - 3Essentials Hosting

SMTP-AUTH support in Sitebuilder 4.x feedback form

Article ID: 469

 Back to Search

For the feedback form under sitebuilder to work you have to add some mail related parameters to the the web.config.
Under the  httpdocs folder you can see sitebuilder folder which contains the web.config file.
The following contents have to be added to the web.config file under <system.net> tag.

<system.net>
    <mailSettings>
      <smtp deliveryMethod="Network" from="test@yourdomain.com">
        <network host="mail.yourdomain.com" port="25" defaultCredentials="false" userName="test@yourdomain.com" password="<email password here>" />
      </smtp>
    </mailSettings>
  </system.net>

(Replace yourdomain.com with domain name and username/password with a valid email ID/password.)

Next time when you publish using sitebuilder, web.config will get overwritten.  As such, after you publish with sitebuilder, you will need to readd these settings.
 
Downloads Associated With This Article
No downloads are currently associated with this article.