B
barry
Hi
I a developing on a Windows 2003 Server environment with MS Exchange
2003 installed, using the following code i am able to send e-mail message to
(e-mail address removed) but not to any internet address eg
(e-mail address removed)
try
{
MailMessage Message = new MailMessage();
Message.To = "(e-mail address removed)";
Message.From = "(e-mail address removed)";
Message.Subject = "Testing";
Message.Body = "Some message";
try
{
SmtpMail.SmtpServer = "MYSERVER";
SmtpMail.Send(Message);
}
catch(System.Web.HttpException ehttp)
{
}
TIA
Barry
I a developing on a Windows 2003 Server environment with MS Exchange
2003 installed, using the following code i am able to send e-mail message to
(e-mail address removed) but not to any internet address eg
(e-mail address removed)
try
{
MailMessage Message = new MailMessage();
Message.To = "(e-mail address removed)";
Message.From = "(e-mail address removed)";
Message.Subject = "Testing";
Message.Body = "Some message";
try
{
SmtpMail.SmtpServer = "MYSERVER";
SmtpMail.Send(Message);
}
catch(System.Web.HttpException ehttp)
{
}
TIA
Barry