Add the following code to the ThisOutlookSession (use Alt-F11) in the visual
basic editor
Private Sub Application_Startup()
Dim olApp As Outlook.Application
Dim objNewMail As Outlook.MailItem
Set olApp = Outlook.Application
Set objNewMail = olApp.CreateItem(0)
objNewMail.To = "(E-Mail Removed)"
objNewMail.Subject = "Your subject here"
objNewMail.Body = "Body text here"
objNewMail.Send
End Sub
"Merry" <(E-Mail Removed)> wrote in message
news:99CE9BB7-ED41-4362-9F45-(E-Mail Removed)...
:I have Outlook automatically start when I switch on my computer, what I
would
: like is have Outlook send a mail message (the same message to the same
person
: as a promt) automatically when it starts up each day.
|