an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 4/20/2012 9:02:43 PM By lukezy. 1 replies.
4/18/2012 4:52:03 PM
sanieth
Posts: 1
Joined: 4/18/2012
Gmail stmp set up?
Hello everyone I'm a newbie on web development 
 
My question is what should I do on web.config to set up a gmail smtp in order to test the mail confirmation 
4/20/2012 9:02:43 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Gmail stmp set up?

<mailSettings>

<smtp deliveryMethod="Network" from="youraccount@gmail.com">

<network host="smtp.gmail.com" port="587" userName="youraccount@gmail.com" password="your password"/>

</smtp>

</mailSettings>

DotShoppingCart Staff