Open a new email. Make sure the Standard toolbar is being displayed. Click
the Options button. That option is there both with the Outlook editor and
with WordMail.
To use code you would handle the NewInspector() event of the Inspectors
collection to trap all items opening, or you can use a macro that you call
that uses the ActiveInspector object, something like this:
Public Sub DelayThisEmail()
Dim oInsp As Outlook.Inspector
Dim oMail As Outlook.MailItem
Set oInsp = Application.ActiveInspector
Set oMail = oInsp.CurrentItem
oMail.DeferredDeliveryTime = DateAdd("h", 4, Now)
oMail.Save
End Sub
That would actually submit the email to the transport 4 hours from now,
after you click the Send button or use the Send() method in code on that
mail item.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
"Bob Jann" wrote in message
...
Thanks. However, I do not see that in the Options dialog box. Please
advise. Also, how do I use code?