使用 WORD VBA 将 Microsoft Word 作为 Lotus Notes 电子邮件的附件

发布于 2024-11-10 16:31:14 字数 506 浏览 3 评论 0原文

我有一个受保护的Word文档,其中有一些文本字段和纯文本。我在其中创建了一个命令按钮,以将此 Word 文档作为附件附加到 Lotus Notes 中。效果很好,但现在我想要 Lotus Notes 的“收件人地址”中的特定电子邮件地址。

我的代码是

Sub emailcoord()

  Options.SendMailAttach = True
  ActiveDocument.SendMail
  Application.Dialogs(xlDialogSendMail).Show "[email protected]"

End Sub

我从buttonclick调用这个子程序。

谁能帮我如何在 Lotus Notes 中添加“收件人地址”。

I have a protected word document, which has some text fields and plain text. I created a command button in this to attach this word document as an attachment in the Lotus Notes. That works fine, but now I want the specific email address in the To Address of the lotus notes.

My code is

Sub emailcoord()

  Options.SendMailAttach = True
  ActiveDocument.SendMail
  Application.Dialogs(xlDialogSendMail).Show "[email protected]"

End Sub

I am calling this sub from buttonclick.

Can anyone please help me how to add "To address" to the lotus notes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文