Email Setting with web config
1 min read
In web Config add below section <system.net> <mailSettings> <smtp deliveryMethod="Network" from="xxx@xxxxxxx.com"> <network defaultCredentials="false" host="Smtp.gmail.com" password="xxxxxxx" port="25" userName="testing"/> </smtp> </mailSettings> </system.net> In Page write below code For Edit in web... Read More
