Send the same email at 1 pm Mon through Friday

  • Thread starter Thread starter cecij22
  • Start date Start date
C

cecij22

I have never created a macro to automate anything in Outlook and I have just
started looking at Visual Basic language to try to understand it.

Having said that, I would like to know how I would go about creating a macro
for Outlook to have it automatically send an email every Monday through
Friday at 1 pm to a specific person. I need something that will be set to
run at 1pm everyday without me having to do anything except turn on my
computer, log in and launch Outlook. Is there any way of doing this?
 
You need an event handler -- code that responds automatically to something
happening in Outlook -- not a macro. Perhaps the easiest way to do that is
to create a recurring task with a reminder and then apply the technique
shown in the code sample at
http://www.outlookcode.com/codedetail.aspx?id=1721 to respond to the
reminder firing.
 
Back
Top