How to configure Godaddy email settings using asp.net web.config is explained here by Satalaj
Definitely, one of the string below will work for your web application hosted on Godaddy Shared hosting server.
For my this site blog, I have configured Godadddy email settings like below.
You can use SMTP server details and port number of godaddy to configure your web applications on server.
You can configure your web.config file to send email on Godaddy email service provider like.....
<system.net>
<mailSettings>
<smtp deliveryMethod="network" from="youemail@yourhost.com">
<network
host="relay-hosting.secureserver.net"
port="25"
defaultCredentials="true"
/>
</smtp>
</mailSettings>
</system.net> |
or
<mailSettings>
<smtp>
<network host="relay-hosting.secureserver.net" />
</smtp>
</mailSettings>
use port 25 for sending email or 3535 |
or
Once you choose Godaddy as hosting provider, you don't need to worry about Security updates and framework patches. They do take care of it.
It’s really best web hosting provider and It’s number one.