G
Guest
Hi,
I'm trying to send mail from my ASP.NET application using the new
System.Net.Mail classes.
The code is fairly basic
string SMTPServer = "smtp.atlanticbb.net";
SmtpClient client = new SmtpClient(SMTPServer);
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.Send("(e-mail address removed)", "(e-mail address removed)","test", "test");
I get no errors, but I never recieve the message.
My environment is a development machine (XP pro)
the smtp server I'm using comes from my ISP.
I have norton antivirus, and it does indicate that the message was sent, but
I don't receive anything.
Any thoughts?
Thanks
I'm trying to send mail from my ASP.NET application using the new
System.Net.Mail classes.
The code is fairly basic
string SMTPServer = "smtp.atlanticbb.net";
SmtpClient client = new SmtpClient(SMTPServer);
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.Send("(e-mail address removed)", "(e-mail address removed)","test", "test");
I get no errors, but I never recieve the message.
My environment is a development machine (XP pro)
the smtp server I'm using comes from my ISP.
I have norton antivirus, and it does indicate that the message was sent, but
I don't receive anything.
Any thoughts?
Thanks