an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 5/26/2009 9:29:06 AM By lukezy. 3 replies.
5/21/2009 2:22:49 PM
4safety
Posts: 124
Joined: 5/11/2009
Email setup
I didnt include my email information in the InstDSC.exe setup can you walk me through how to set this up for the contact form to work?
 
Also is there a way to remove a field from the contact form i dont need one.
 
 
thanks
5/22/2009 7:40:55 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Email setup
Check web.config and update smtp settings.
 
You can change web\controls\blocks\contactform.ascx.
DotShoppingCart Staff
5/25/2009 5:37:59 PM
4safety
Posts: 124
Joined: 5/11/2009
Re: Email setup
can you give me an example of what the settings should look like in web.config for the email settings.
 
 
thanks
5/26/2009 9:29:06 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Email setup
        <mailSettings>
            <smtpdeliveryMethod="network"from="system@nobody.com">
                <networkhost="mysmtpserver"port="25"defaultCredentials="true"/>
            </smtp>
        </mailSettings>
DotShoppingCart Staff