任何人都可以告诉我是否可以通过 ASP.NET Web服务的System.Web.Mail.MailMessage对象?也许使用XML 序列化/反序列化?我被要求调查 构建捕获MailMessage的前端网页的可能性 诸如To,From Subject,Attachments等属性构建了一个MailMessage 对象,将MailMessage对象传递给Web服务,然后是Web服务 通过Smtp.Send方法发送消息。
感激地收到任何帮助。谢谢!
答案 0 :(得分:4)
当然可以使用Web服务来完成。 WCF会使这非常简单。只需创建一个新的WCF Web服务,该方法将如下所示:
[WebMethod]
public bool ReceiveMailMessage(MailMessage mm)
{
//Send the MM
return true;
}