vote up 1 vote down star

I tried to send an email using this class below, but no success, no error message, the page just executed very fast, any problem with this class?

public bool mailSender(string strSubject, string strFrom, string strFromName, string strTo, string strBody)
{
		SmtpClient smtpClient = new SmtpClient();
		MailMessage message = new MailMessage();

		try
		{
			MailAddress fromAddress = new MailAddress(strFrom, strFromName);

			smtpClient.Host = ConfigurationManager.AppSettings["smtpServer"];
			smtpClient.Port = 25;
			smtpClient.Credentials = new NetworkCredential(ConfigurationManager.AppSettings["smtpUsername"], ConfigurationManager.AppSettings["smtpPassword"]);

			message.From = fromAddress;

			message.To.Add(strTo);
			message.Subject = strSubject;

			message.IsBodyHtml = false;

			message.Body = strBody;

			smtpClient.Send(message);

			return true;
		}
		catch
		{
			return false;
		}
}
flag

25% accept rate
Did you check mail server queues (failed, queued etc.) to see if your message is in any of those? If it is, than you'll have to check your SMTP server configuration (hence no exception thrown in your code). – Robert Koritnik May 30 at 16:58
After numerous headaches caused by dealing with System.Net.Mail, we switched to FreeSMTP.Net from Quiksoft and have been much happier. It has similar syntax and better error messages. And no, I don't work for the company. quiksoft.com/freesmtp – HVS May 30 at 17:04

3 Answers

vote up 3 vote down check

Your try/catch block is deliberately throwning away any error message. Remove that and see what you get.

link|flag
Oh God! I feel shame on my self... Didn't touch the code for so long... lol – koloskiX May 30 at 17:06
vote up 0 vote down

piggy backing of what bruce said, do this:

try
    'your code here'
catch ex As Exception
    Response.Write(ex.Message)
end try
link|flag
vote up 0 vote down

One thing I have noticed, especially when running in the debugger, is that the SmtpClient doesn't seem to actually send the mail until it gets disposed. At least, I often see the messages going out when I shutdown the debugger rather than at the time the mail is actually supposed to be sent.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.