Friday, May 22, 2009

For passing Shortkeys

set wsh = Createobject("Wscript.Shell")
wsh.SendKeys "{F2}"

Sending an Email

SendMail "gopve01@ca.com","hi","how r u",""

Function SendMail(SendTo, Subject, Body, Attachment)

Set ol=CreateObject("Outlook.Application")
Set Mail=ol.CreateItem(0)
Mail.to=SendTo
Mail.Subject=Subject
Mail.Body=Body
If (Attachment <> "") Then

Mail.Attachments.Add(Attachment)

End If
Mail.Send
ol.Quit
Set Mail = Nothing
Set ol = Nothing

End Function