ACCESS 2007 - 在发生特定事件时使用 Outlook 自动发送和发送电子邮件
我正在尝试在 Microsoft Access 2007 中创建一个应用程序。如何在特定事件发生时使用 Outlook 2007 以静默方式发送电子邮件,而无需任何用户交互。我应该如何处理这个问题。如果你能提供一些 VBA 那就太好了,但如果没有,你能指导我如何实现这一点吗?
I am trying to create an App in Microsoft Access 2007. How can I silently send an email out using Outlook 2007 upon a specific event without any user interaction. How should I approach this. If you can provide some VBA some it would be extremely nice, but if not, could you guide me in how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我能够使用以下代码解决我的问题:
I was able to solve my problem with the following code:
首先在您想要发送电子邮件的事件中或在您希望事件调用的函数中声明几个变量。
接下来,打开或获取 Outlook(如果它正在运行)。
现在,对您的电子邮件进行您需要做的事情。
最后,如果之前没有运行,请关闭 Outlook 并进行清理。
First declare a couple variables in the event that you want to send the email, or in a function you'd like the event to call.
Next, open or get Outlook if it's running.
Now, do what you've got to do with your email.
Finally, close outlook if it wasn't running before and clean up.
您可以通过使用宏和“SendObject”操作来实现“无代码”。请务必填写所有必要的参数“收件人”、“主题”、“消息文本”,然后将“编辑消息”参数设置为“否”。
然后,您可以将此宏附加到您想要的任何事件,例如按钮的 OnClick 事件。
You can do this "code-free" by using a macro and the "SendObject" action. Be sure to complete all the necessary arguments To, Subject, Message Text, and then set the Edit Message argument to 'No'.
You can then attach this macro to any event you wish, such as the OnClick event of a button.