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