How To Send Godaddy SMTP eMail Setup Host & Port (asp.net, c#)

[ad_1] #emailcsharp #smtpemail #asp.netNow ! send eMails from your website on GoDaddy hostings, the code is given below… Godaddy SMTP host :- relay-hosting.secureserver.netPORT :- 25 NAMESPACES using System.Net;using System.Net.Mail; CODE MailMessage msg = new MailMessage(); msg.From = new MailAddress(TxtEmail.Text); msg.To.Add(\”contact@hostandservers.com\”); msg.Subject = TxtSub.Text; msg.Body = TxtMsg.Text; msg.IsBodyHtml = true; // MailMessage instance to a specified…