i got it... but i somehow need to use WScript to trigger a mail. check my code snippet.
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "Outlook"
WScript.Sleep 2500
WshShell.SendKeys "^{n}" ' Ctrl + N to trigger 'new mail'
WScript.Sleep 2000
WshShell.SendKeys "
pra...@gmail.com"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "Task Status"
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "Message body "
WshShell.SendKeys "%{s}" ' Alt + S to trigger 'send mail'
PS: Due to some reasons, i could not use the object "CDO.Message" or "Outlook.Application" for sending emails.
So let me know how to execute the second line.