I have one year web hosting with email account from godaddy.
How Ican i config my website feedback ,or send any mail to third person from my website.
This is my code.
StreamReader reader = new StreamReader(Server.MapPath("~/RegistrationEmailBody.htm"));
string readFile = reader.ReadToEnd();
string myString = "";
myString = readFile;
myString = myString.Replace("$$UserName$$", Username);
myString = myString.Replace("$$Password$$", password );
MailMessage Msg = new MailMessage();
MailAddress fromMail = new MailAddress("[email protected]");
// Sender e-mail address.
Msg.From = fromMail;
// Recipient e-mail address.
Msg.To.Add(new MailAddress(UserEmailId));
// Subject of e-mail
Msg.Subject = "OES Infotech Online Examination User Credential";
Msg.Body = myString.ToString();
Msg.IsBodyHtml = true;
SmtpClient mailClient = new SmtpClient("hosting.secureserver.net", 80);
// Change your gmail user id and password for send email
NetworkCredential NetCrd = new NetworkCredential("[email protected]", "abcd");
mailClient.UseDefaultCredentials = false;
mailClient.Credentials = NetCrd;
mailClient.EnableSsl = true;
mailClient.DeliveryMethod = SmtpDeliveryMethod.Network;
mailClient.Send(Msg);
Plz Help me
Loading

Sanjay KumarPosted Jul 5, 2014, 12:46 AM
try this
Use the following relay server - relay-hosting.secureserver.net
host="relay-hosting.secureserver.net" port="25"
http://stackoverflow.com/questions/1360214/cannot-send-email-in-asp-net-through-godaddy-servers
http://vandelayweb.com/sending-asp-net-emails-godaddy-gmail-godaddy-hosted
http://ctrlf5.net/?p=7
Ganapathi RajangamPosted Jun 1, 2017, 2:02 AM
Select-Smart would like to conduct a digital interview with you. The interview model is predictive and the questions are unique and focus on the time taken and quality of your response to the prior questions.
Ready to take the Interview? Start your interview by clicking on the below,and give yourself the best chance for success.
");Digital interviewing is a modern, new way to interview. Simply record your answers to pre-set interview questions from Select Smart using your computer and webcam, or your mobile device. After you finish, we will review your responses and contact you regarding next steps.
We think you will find the digital interview a great experience – here is why:");
");
Convenience - Rather than take a day away from your responsibilities to conduct a phone interview, we are bringing the interview to you. Interview anywhere, anytime that is most convenient for you.
Personalize Your Story - Digital interviews allow you to tell your story and highlight your experience in a much more personalized, dynamic way, than a static resume.
Fair - All candidates receive the same set of questions. All responses are viewed by our hiring team. Regardless of whether you are the first or last to interview, you will have the same experience and exposure as every other candidate.
More Exposure Across Select Smart - Your digital interview will be shared across several hiring teams at Select Smart, giving you the chance to reach more managers than meeting with a single recruiter.
Kindly make sure your audio and video device in working mode.
Select Smart Team
Vishal SinghPosted Mar 2, 2016, 7:03 AM