Link to home
Start Free TrialLog in
Avatar of Charlie Fraser
Charlie Fraser

asked on

How to Create a Recurring Email in Outlook 2010.

Hello, We are trying to create a recurring mailing using Outlook 2010. When we try to use the following code from Microsoft we can't get it to work:     Sub Item_PropertyChange(ByVal Name)    Select Case Name     Case "Status"             if Item.Status = 2 then '2 = Completed                     Set NewItem = Application.CreateItem(0)                    NewItem.To = "myemailaddress@myisp.com"                    NewItem.Recipients.ResolveAll                    NewItem.Subject = "This is the message subject text"                    NewItem.Body = "This is text that will appear in the body of the message."                    NewItem.Display             End IF     End Select     End Sub

Is there a VB or Powershell script that would enable us to do this?
ASKER CERTIFIED SOLUTION
Avatar of Michael Hurley
Michael Hurley
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Hypercat (Deb)
There are free or very inexpensive apps available to automate this.  I used this one a few years ago; it worked fine:

http://www.sendlateremail.com/

Even the Pro edition is only $45.