I have this code which works great and saves the file in the "Drafts" folder. I was hoping there was a way to save these emails in a folder called "Parents", is that possible?
TIA
DougP
Code:
Dim OlApp As Object
Dim OlMail As Object
Set OlApp = CreateObject("Outlook.Application")
Set OlMail = OlApp.createitem(olmailitem)
OlMail.Recipients.Add Email
'Add the two attachments
OlMail.Attachments.Add FullPath & PDFFile
OlMail.Attachments.Add "my.pdf"
OlMail.subject = subject
OlMail.htmlBody = newmessage
' save the message
OlMail.Save
TIA
DougP