使用 WORD VBA 将 Microsoft Word 作为 Lotus Notes 电子邮件的附件
我有一个受保护的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在这里找到更多信息: http://www.fabalou.com/VBandVBA/lotusnotesmail.asp
并在此线程上:从 Excel VBA 发送格式化的 Lotus Notes 富文本电子邮件
问候,
麦克斯
You can find much information here : http://www.fabalou.com/VBandVBA/lotusnotesmail.asp
and on this SO thread : Sending formatted Lotus Notes rich text email from Excel VBA
Regards,
Max