I finaly have a working mailscript (tnx guys)
but it only works when outlook is already open.
I want it to be a stealth mail program so the users doesnt see/know it (nope no virus).
Richard Howarth thinks its not possible.
i think it is (sue me).
so is there anyway to hide/stealth an windows program (outlook)

this is the script im using now
code:
$Root = CreateObject("Outlook.Application")
$MailItem = $Root.CreateItem(0)
$MailItem.Importance=2
$MailItem.Subject = "Automation Test"
$MailItem.To = "bla@@bla.com"
$MailItem.Body = "KiXtart sending mail test"
$MailItem.Attachments.Add("E:\kix\text.txt")
$MailItem.Send