C# SMTPClient 发送位于 url 中的附件
在 C# 中,如何添加位于远程 url 中的附件(例如:http://www.mydomain.com/attahments/sample.pdf)?
我没有看到附件类构造函数的那种重载。
有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Download* 方法之一将该文件下载到本地系统。 webclient.aspx" rel="nofollow">System.Net.WebClient 类,然后将其附加到您的邮件中。
我不知道如何将网络客户端的响应流直接附加到邮件消息附件而不将文件保存到磁盘。应该是可能的,尽管不是根据此资源。
You could download the file to your local system using one of the
Download*
methods of the System.Net.WebClient class, and then attach it to your mail message.I don't know how to attach the response stream of the webclient to the mailmessage attachment directly without saving the file to disk. Should be possible, although not according to this resource.