0
我從宏(Excel文件宏)創建電子郵件,並試圖使附件夾在文本中。使用下面的代碼的附件簽名後加上的,我想它有身體,文件簽名對Outlook中的文本和附件重新排序電子郵件
Set olMailItem = olApp.CreateItemFromTemplate(EmailFilePath)
With olMailItem
'search and replace subject for "KW ##" to the kw from "Key Metrics" tab
.Subject = Replace(.Subject, "KW ##", KW)
.Attachments.Add ("H:\QA\QA Mgmt\Presentations\" & reports(r).filename)
.Body = .Body & GetSignature(emailTemplatePath & "EmailSignature.txt")
.Display
End With
EmailFilePath
是與現有的身體和reciepients的MSG文件的路徑。有沒有辦法強制簽名被添加到附件後?
在此先感謝