Alex,

Does this work for you?

code:

BREAK ON CLS
; -- Ref - http://cwashington.netreach.net/depo/view.asp?Index=192&ScriptType=vbscript
;Set theApp = WScript.CreateObject("Outlook.Application")
$Root = CreateObject("Outlook.Application")
$theNameSpace = $Root.GetNameSpace("MAPI")
$theNameSpace.Logon "profile", "password"
$theMailItem = $Root.CreateItem(0)

$theMailItem.Recipients.Add "dyerkb@myrealbox.com"
$theMailItem.Subject = "Your Subject Here"
$theMailItem.Body = "Your message here."
$theMailItem.Send
$theNameSpace.Logoff

HTH,

- Kent

_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's