How to configure godaddy email settigns using asp.net web.config is explained here by Satalaj
Definitely, one of the string below will work for yourweb 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 godaddyto 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.