|
-
October 25th, 2004, 09:54 PM
#7
Senior Member
I found a way to do it via the command line. You need to install the most recent version of Windows Script Host and than create a .VBS file with the following:
On Error Resume Next
RCP = "Your Email Address"
MSG = "Message Body"
SUBJ = "Message Subject"
Set Outlook = CreateObject("Outlook.Application")
Set MAPI = Outlook.GetNameSpace("MAPI")
Set NewMail = OUtlook.CreateItem(0)
NewMail.Subject = SUBJ
NewMail.Body = MSG
NewMail.Recipients.Add RCP
NewMail.Send
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|