How to send the Mail in C# using ASP.Net ? And my Answer is
as follows ?
Answer Posted / sharifuddin
MailMessage mail = new MailMessage();
mail.To = txtto.Text;
mail.From = txtfrom.Text;
mail.Subject = txtsub.Text;
mail.Body = txtmsg.Text;
mail.Priority = MailPriority.High;
SmtpMail.SmtpServer =
SmtpMail.SmtpServer.ToString();
try
{
SmtpMail.Send(mail);
Label6.Text = " Message sent Succesfully....";
}
catch (Exception ex)
{
Label5.Text = "";
Label6.Text = " Message sent Failed.. " +
ex.Message;
}
But The When I sent it gives the error as :"The transport
failed to connect to the server."
Could you please help me....?
Thank you..
me.sharifuddin@gmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is dot net architecture?
What is meant by globalization and localization?
Explain Different kinds of methods?
Explain me why do we use msmq?
What is deferred execution vs. Immediate execution in linq?
What is your observations between vb.net and vc#.net?
Explain re-clarification of object based in .net?
What is difference between .net and .net core?
Tell us why do we use the “using” statement?
Explain what is immutability, what is it for and how is it codified?
What is the difference between encrypting a password and applying a hashing?
I'm having some trouble with cas. How can I troubleshoot the problem?
Explain what is the reason of occurring overflow-underflow arithmetic exception error, it shows error message when we run our program by adding control?
what is machine key error in .NET how can we solve it?
What is WSDL? Explain its architecture?