Hello,
I am looking for the vb code to send an outlook message on a certain date.
I have the code working properly to send the message but can’t figure out how to delay delivery.
Here is the code I am using to create the email (as I said, it is working)
With OLMail
.to = EmailAddrs
.cc = “David Cornett”
.Subject = “Breakfast Club Reminder”
.Body = MsgText
.Send
End With
Note: OLMail, EmailAddrs, & MsgText are dimmed and defined earlier in the code.
Note 2: I have discovered that there is a .Delay property but apparently that only brings the message to the user’s screen and allows the user
to review the message before he/she clicks the send button.
Note 3: I have also found something called Mail.DeferredDeliveryTime
but don’t know how to use it
Any help you can give me is ALWAYS greatly appreciated.
Thanks
David