How to Send a daiy Reminder e-mail to another e-mail address?

B

Bruceh68

Does anyone know How to Send a daiy Reminder e-mail to another e-mail address
using Outlook 2003 ?
 
N

Nick B

I could give you a simple vbs script that you could put in a text file and
you could have Window's Task Scheduler run the vbs script every day/every
workday, etc.
Let me know if you want that.

Or you could invite the person to a recurring meeting/task and turn on
reminders.
 
B

Bruceh68

Thanks for the info, only trouble is when you try to set a reminder it does
not give you a choice for "everyday"

How would I make a vbs script and where would I put it?

Thanks,
 
R

Roady [MVP]

See my reply.

--
Robert Sparnaaij [MVP-Outlook]
Coauthor, Configuring Microsoft Outlook 2003


-----
Thanks for the info, only trouble is when you try to set a reminder it does
not give you a choice for "everyday"

How would I make a vbs script and where would I put it?

Thanks,
 
N

Nick B

You could create a .vbs file with something like:

'code start
Dim objOL 'As Outlook.Application
Dim objMail 'As Outlook.MailItem
Dim bolNewInstance 'As Boolean

Const olMailItem = 0

On Error Resume Next
Set objOL = GetObject(, "Outlook.Application")
bolNewInstance = False
If Err.Number = 429 Then
Set olApp = CreateObject("Outlook.application")
bolNewInstance = True
End If
On Error GoTo 0

Set objMail = objOL.CreateItem(olMailItem)
objMail.To = "(e-mail address removed)"
objMail.Subject = "my subject"
objMail.Body = "body of my message"
objMail.Send

Set objMail = Nothing
If bolNewInstance Then objOL.Quit
Set objOL = Nothing
'code end

If you double-click it, an email will be sent, so you could use Task
Scheduler to run it. Now depending on your version of Outlook, you may get a
security warning, in which case you could install Click Yes (the free version
works):
http://www.contextmagic.com/express-clickyes/
You would then wrap your code with the code on:
http://www.contextmagic.com/express-clickyes/free-version.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top