我已经问了同样的问题(也找到了解决方案),但是对于更高版本,即Exchange Server 2007.我可以使用EWS和Web服务API来完成我的目标。
我想知道如何使用Microsoft Exchange Server 2003发送邮件,在Asp.net 中,不支持EWS。
请稍微说清楚。 日Thnx
这是我正在使用的代码:
MailMessage mail = new MailMessage();
//set the addresses
mail.From = new MailAddress("alexander.kings@company.com");
mail.To.Add("alexander.kingsu@company.com");
//set the content
mail.Subject = "This is an email";
mail.Body = "this is a sample body";
//send the message
//SmtpClient smtp = new SmtpClient("sytem ip address");
SmtpClient smtp = new SmtpClient("UK-BIR-MAIL1.corp.company.com");
//smtp.Credentials = new NetworkCredential("corp\alexkings", "password");
smtp.UseDefaultCredentials = true;
smtp.Send(mail);