使用 Access 和 VBA 发送电子邮件,无需 MAPI
我想使用 VBA 在无人值守的情况下从 Microsoft Access 发送电子邮件。 据我了解,内置方法“SendObject”使用 MAPI,意味着安全提示和 Outlook 配置之类的内容。 由于我想使用任务计划程序来启动不同的报告,因此我倾向于放弃 MAPI,而更喜欢其他解决方案。 不是运输申请,只是内部申请。 有想法吗?
I would like to send email from Microsoft Access unattended using VBA. I understand that the built-in method “SendObject” uses MAPI meaning security prompts and something like Outlook configured. Since I want to use the Task Scheduler to kick off different reports, I’m leaning away from MAPI and would prefer some other solution. Not an application for shipping but just in-house. Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是适用于我的 CDO 和 gmail 的测试代码。
Here's the test code that worked for me with CDO and gmail.
您需要一个 SMTP 服务器来发送电子邮件。 那么你需要使用CDO消息对象。
You'll need an SMTP server that will allow you to send email. Then you need to use the CDO message object.
您可能会发现 Tony Toews 的访问电子邮件常见问题解答很方便。
You might find Tony Toews's Access EMail FAQ handy.
我是这样做的,注意,你必须安装 Outlook 才能工作。
I do it this way, note, you must have Outlook installed for it to work.
Outlook Redemption 是免费的并且使用非常广泛:http://www.dimastr.com/redemption/
它非常非常接近原始的 Outlook 对象模型,因此学习曲线很简单:)
Outlook Redemption is free and very widely used: http://www.dimastr.com/redemption/
It is very very close to the original outlook object model, so the learning curve is cake:)