SMTP Excel 附件文件损坏
我创建了一个 VB6 应用程序,希望从中发送 SMTP 电子邮件。电子邮件发送和接收正常,但在附加 Excel 2003 文件时,虽然接收正常,但在尝试打开它时文件已损坏...我也尝试保存附件,然后打开它,但问题仍然存在。谢谢您的帮助...
I've created a VB6 application from which I wish to send an SMTP email. The email is sent and received fine but when attaching an Excel 2003 file, whilst this is received okay, when trying to open it file becomes corrupt... I've also tried saving the attachment and then opening it but the problem persists. Thank you for any assistance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
附件数据必须进行编码。并非所有邮件服务器和客户端都是 8 位安全的。
Base64 是最常见的编码方法。
The attachment data must be encoded. Not all mail servers and clients are 8-bit safe.
Base64 is the most common encoding method.