我希望能够从我的Outlook邮件帐户发送一封html电子邮件,说明如何在Outlook中打开developer选项卡,并使用宏编辑器,我已经按照说明(从Outlook apps开始)进行了操作,但仍然无法使用我的代码。
我的代码是;

Sub InsertHTMLFile()
Dim insp As Inspector
Set insp = ActiveInspector
If insp.IsWordMail Then
Dim wordDoc As Word.Document
Set wordDoc = insp.WordEditor
wordDoc.Application.Selection.InsertFile “C: UsersPreeceyDesktoppaper_Jan.html“ , , False, False, False
End If
End Sub

我得到错误5273 the document name or file path is not valid.
我试过使用这个路径,但是我得到了;file:///C:/Users/Preecey/Desktop/paper_Jan.html
我想我的文件路径不对,但我不知道它应该是什么样子。我已经找了好几个小时的解决办法,但到目前为止我一点也不聪明。任何帮助都将不胜感激。
谢谢,凯瑞

最佳答案

将“C:UsersPreeceyDesktoppaper_Jan.html”引号替换为常规引号“”。
“”与“”“
希望这有帮助

08-15 20:44