here is a script that I use, its not mine and I did not write it...this is just to give you some help
On Error Resume Next
Dim WSHShell, objOutlook, objMsg, strTitle
Dim strSendTo, strSubj,strBody
Set WSHShell = WScript.CreateObject("WScript.Shell"

Set objOutlook = Wscript.CreateObject("Outlook.Application"

strTitle="Send Outlook Email"
' Set a reference to the MailItem object
Set objMsg = objOutlook.CreateItem(0)
if err.number<>0 then
wscript.echo "("&err.number&"

"& err.description
wscript.echo "Error creating Outlook object."
wscript.quit(1)
end if
' Get an address from the user
strSendTo=objMsg.Recipients.Add(InputBox("Enter email address of recipient or recipients separated by commas.",strTitle))
if strSendTo="" then
wscript.echo "No addresses specified. Cancelling remaining script processing."
Set objOutlook = Nothing
Set objMsg = Nothing
Set recMessage = Nothing
wscript.quit(1)
end if
' Add subject and body text
objMsg.Subject = InputBox("What is the subject of your message?",strTitle)
if objMsg.Subject="" then
x=MsgBox("No subject specified or you clicked Cancelled. Do you want to quit?",4+32,strTitle)
if x=6 then
Set objOutlook = Nothing
Set objMsg = Nothing
Set recMessage = Nothing
wscript.quit
end if
end if
objMsg.Body = InputBox("What is your message?",strTitle)
if objMsg.Body="" then
x=MsgBox("No body specified or you clicked Cancelled. Do you want to quit?",4+32,strTitle)
if x=6 then
Set objOutlook = Nothing
Set objMsg = Nothing
Set recMessage = Nothing
wscript.quit
end if
end if
'Review the message
ReviewItem="To: " & strSendTo & VBCRLF & "Subject: " & objMsg.Subject & VBCRLF & objMsg.Body
y=MsgBox(ReviewItem & VBCRLF & VBCRLF &"Do you want to send this message?",4+32,strTitle)
if y=7 then
Set objOutlook = Nothing
Set objMsg = Nothing
Set recMessage = Nothing
wscript.quit
end if
' Send the mail
objMsg.Send
if err.number<>0 then
wscript.echo "Error sending mail message."
wscript.echo "("&err.number&"

"& err.description
wscript.quit(1)
else
wscript.echo "Message sent to " & strSendTo
end if
' Close object references
Set objOutlook = Nothing
Set objMsg = Nothing
Set recMessage = Nothing
Wscript.Quit(0)