将 MailMessage 对象传递给 Web 服务

发布于 2024-11-09 03:37:51 字数 238 浏览 0 评论 0原文

谁能告诉我是否可以通过 System.Web.Mail.MailMessage 对象到 ASP.NET Web 服务?也许使用 XML 序列化/反序列化?我被要求调查 构建捕获 MailMessage 的前端网页的可能性 诸如“收件人”、“发件人主题”、“附件”等属性,构建 MailMessage 对象,将 MailMessage 对象传递给 Web 服务,然后 Web 服务 通过 Smtp.Send 方法发送消息。

非常感谢任何帮助。谢谢!

Can anyone please tell me if it's possible to pass a
System.Web.Mail.MailMessage object to a ASP.NET Web Service? Maybe using XML
Serialization / Deserialization? I've been asked to investigate the
possibility of building a front-end web page which captures MailMessage
properties such To, From Subject, Attachments etc, builds a MailMessage
object, passes the MailMessage object to a web service, the web service then
sends the message via the Smtp.Send method.

Any assistance gratefully received. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情释 2024-11-16 03:37:51

当然,这可以使用网络服务来完成。 WCF 将使这变得极其简单。只需创建一个新的 WCF Web 服务,该方法将如下所示:

[WebMethod]
public bool ReceiveMailMessage(MailMessage mm)
{
   //Send the MM
   return true;  
}

Certainly this can be done using web services. WCF would make this extremely simple. Just create a new WCF web service and the method would look something like this:

[WebMethod]
public bool ReceiveMailMessage(MailMessage mm)
{
   //Send the MM
   return true;  
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文