Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Add-ins for Outlook (http://www.outlookbanter.com/add-ins-outlook/)
-   -   Schedule future emails (http://www.outlookbanter.com/add-ins-outlook/88753-schedule-future-emails.html)

Bob Jann April 7th 09 06:50 PM

Schedule future emails
 
Using Outoook 2002, I want to be able to schedule emails to be sent at a
future time/date. I tried downloading an add-in from Mapi but it created
annoying security messages so I uninstalled it. Can anyone suggest how else
I can schedule emails to be sent at a future date/time?



Ken Slovak - [MVP - Outlook] April 8th 09 03:02 PM

Schedule future emails
 
You can open the Options dialog for any email and set the "Do not deliver
before" setting to whatever you want.

Using code you can set the DeferredDeliveryTime Date/Time property to
whatever date/time you want to schedule the sending of the 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
...
Using Outoook 2002, I want to be able to schedule emails to be sent at a
future time/date. I tried downloading an add-in from Mapi but it created
annoying security messages so I uninstalled it. Can anyone suggest how
else I can schedule emails to be sent at a future date/time?



Bob Jann April 9th 09 04:24 AM

Schedule future emails
 
Thanks. However, I do not see that in the Options dialog box. Please
advise. Also, how do I use code?

"Ken Slovak - [MVP - Outlook]" wrote in message
...
You can open the Options dialog for any email and set the "Do not deliver
before" setting to whatever you want.

Using code you can set the DeferredDeliveryTime Date/Time property to
whatever date/time you want to schedule the sending of the 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
...
Using Outoook 2002, I want to be able to schedule emails to be sent at a
future time/date. I tried downloading an add-in from Mapi but it created
annoying security messages so I uninstalled it. Can anyone suggest how
else I can schedule emails to be sent at a future date/time?





[email protected] April 9th 09 12:08 PM

Schedule future emails
 
On 9 Apr, 06:24, "Bob Jann" wrote:
Thanks. *However, I do not see that in the Options dialog box. *Please
advise. *Also, how do I use code?

"Ken Slovak - [MVP - Outlook]" wrote in . ..



You can open the Options dialog for any email and set the "Do not deliver
before" setting to whatever you want.


Using code you can set the DeferredDeliveryTime Date/Time property to
whatever date/time you want to schedule the sending of the 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
...
Using Outoook 2002, I want to be able to schedule emails to be sent at a
future time/date. *I tried downloading an add-in from Mapi but it created
annoying security messages so I uninstalled it. *Can anyone suggest how
else I can schedule emails to be sent at a future date/time?- Ascunde citatul -


- Afișare text în citat -


Hi,

If you wish to simplify the process you can download Easy Mail Merge
from DS Development.
If you wish to send a mail to a list or to a single person this will
simplify the process and you can also select to send them every 10
minutes for example or the next day.
You can download the add-in from www.emailaddressmanager.com

regards,
Andrei

Ken Slovak - [MVP - Outlook] April 9th 09 02:48 PM

Schedule future emails
 
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?




All times are GMT +1. The time now is 12:29 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com