![]() |
#1
|
|||
|
|||
![]()
Hi
I want to attach all PDFs in a specific desktop folder to an Outlook email using VBA in Word I'm using below code to generate an Outlook email but cant figure out how to write the attachment part. Sub Email_Template1() Dim oMailItem As Object, oOLapp As Object Dim Word As Object, doc As Object, MsgTxt$ Set oOLapp = CreateObject("Outlook.Application") Set oMailItem = oOLapp.CreateItem(0) Set Word = CreateObject("word.application") With oMailItem .To = "Email" .cc = "Email" .subject = "Needed Confirmation" ' .attachment.Add .HTMLBody = "test" .Display End With Set oOLapp = Nothing Set oMailItem = Nothing End Sub |
#2
|
||||
|
||||
![]()
Cross posted at Reload this Page Attaching all PDFs in folder to Outlook email using Word VBA
and Attaching all PDFs in folder to Outlook email using Word VBA - Excel VBA / Macros - OzGrid Free Excel/VBA Help Forum That's fairly straightforward e.g. Code:
Dim oMailItem As Object, oOLApp As Object Dim Word As Object, doc As Object, MsgTxt$ Dim strFile As String Const strPath As String = "C:\Path\" Set oOLApp = CreateObject("Outlook.Application") Set oMailItem = oOLApp.CreateItem(0) 'Set Word = CreateObject("word.application") '? With oMailItem .To = "Email" .CC = "Email" .Subject = "Needed Confirmation" strFile = Dir$(strPath & "*.pdf") While strFile <> "" .Attachments.Add strPath & strFile strFile = Dir$() Wend .HTMLBody = "test" .Display End With Set oOLApp = Nothing Set oMailItem = Nothing
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
#3
|
||||
|
||||
![]()
Handclips: This is the second time you've been caught cross-posting without providing links. Third strike and you're out.
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
eduzs | Word VBA | 3 | 09-02-2018 04:26 AM |
help with deleting email folder in Outlook | marty364 | Outlook | 0 | 01-09-2016 11:15 PM |
Attaching a folder | alamorchgirl | Misc | 0 | 06-16-2011 06:32 PM |
![]() |
salin | Outlook | 4 | 04-25-2011 10:29 AM |
![]() |
blueskyflowers | Outlook | 1 | 10-06-2010 01:37 PM |