使用 CDO 作为附件发送后解锁文件
您好,我遇到以下问题:
我正在使用 CDO 发送带有附件的电子邮件(我需要这样做,因为 system.Net.Mail 无法在 465 端口上使用隐式 SSL)。 问题是发送后附件仍处于锁定状态。 我怎样才能解锁它?
我正在使用 c# 进行编程。
谢谢你的回答
皮尔卡洛
Hi I have the following Problem:
I'm sending e-mail with attachement with CDO (I need to do this because system.Net.Mail dont work with implicit SSL on 465 port).
The problem is that attached file after sending remain locked.
How can I Unlock its ?
I'm programming using c#.
Thank you for your answer
Piercarlo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我自己解决了
在 CDO.Message.Send() 之后需要这个;
希望这对以下完整代码中的其他一些有用
请注意,代码是为 SQL 程序集
Piercarlo编写的
I resolved from myself
After CDO.Message.Send() need this;
Hope that will be usefull for some other else following completee code
Note that code is write for SQL assembly
Piercarlo
由于某种原因,强制垃圾收集对我不起作用。我通过手动将附件作为字节数组添加到 CDO.Message 对象解决了这个问题,如下所述 此处。
For some reason forcing the garbage collection didn't work for me. I solved this problem by manually adding the attachment to the CDO.Message object as a byte array as explained here.
我刚刚遇到了同样的问题,但我不想依赖垃圾收集。这是一个有效的 C++ 解决方案。在其后添加您的发送:
之后,您的文件删除就可以正常工作了。
I just had the same problem but I don't want to rely on garbage collection. Here is a working C++ solution. Add your send after it:
After that, your file deletion will work fine.