将 MailMessage 对象传递给 Web 服务
谁能告诉我是否可以通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,这可以使用网络服务来完成。 WCF 将使这变得极其简单。只需创建一个新的 WCF Web 服务,该方法将如下所示:
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: