Delay Sending Outlook Messages

You hit Send, then realize you forgot the attachment. Or you misspelled the recipient’s name. Or you used Reply All, when you only wanted the message to go to one person. None of these things have ever happened to me (well hardly ever), but you might have been less fortunate.

All kinds of tragedies can strike in that ohnosecond, just after you fire off an email. As a bit of insurance, you can change a setting in Outlook, so messages are delayed a set number of minutes.

Then, if you realize you didn’t want to include everyone in the lottery ticket email, you’ll have time to delete a name or two from the Send To list.

There are instructions for changing this setting on the Microsoft website. It will only take you a couple of minutes to make the change, and that investment will pay for itself the first time you can correct an error before an email is sent.

Update (2008-Sep-19): JP has written an article describing how to delay Outlook messages with programming.

9 thoughts on “Delay Sending Outlook Messages”

  1. Hey Debra, you can also do this programmatically in Outlook. There is a DeferredDeliveryTime Property of the MailItem Object where you can set the delivery date/time. I’ll post some sample code on my blog.
    –JP

  2. Ron de Bruin
    ‘Stay in the outbox untill this date and time
    .DeferredDeliveryTime = “1/6/2007 10:40:00 AM”
    I searched for hours for this solution…..You’re the man Ron.
    In future when I Google VBA queries I will first try adding your name into the search criteria with what I need. I’ve seen a lot of your replies all over the place and I greatly appreciate your help to the internet community….
    Cheers 🙂

  3. Ron,
    Is there any way for the .DeferredDeliveryTime to read from a cell range from excel?
    I.e.
    .DeferredDeliveryTime =”D2 10:40 AM”
    This obviously wouldn’t work but I think it gives you an idea what I mean.

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.