I’m going back to an earlier post where I wanted to attach more than 1 thing to an email from access. The code below works but It will auto send the email. I want to be able to edit the email before it’s sent. I’m looking to have the email open before it’s sent. I tried a few things with th .send line but nothing worked. Any thoughts? Thanks..
Dim appOutLook As Outlook.Application
Dim MailOutLook As Outlook.MailItem
Set appOutLook = CreateObject(“Outlook.Application”)
Set MailOutLook = appOutLook.CreateItem(olMailItem)
With MailOutLook
.To = “gbanks@ets.org”
.Subject = “Hey…”
.HTMLBody = “Check It Out
”
.Attachments.Add “C:tempdb2.xls”, olByValue, 1, “db2”
.Attachments.Add “C:tempdb1.zip”, olByValue, 1, “Thing”
.Send
End With