I found a way to do it via the command line. You need to install the most recent version of Windows Script Host and than create a .VBS file with the following:


On Error Resume Next
RCP = "Your Email Address"
MSG = "Message Body"
SUBJ = "Message Subject"

Set Outlook = CreateObject("Outlook.Application")
Set MAPI = Outlook.GetNameSpace("MAPI")
Set NewMail = OUtlook.CreateItem(0)
NewMail.Subject = SUBJ
NewMail.Body = MSG
NewMail.Recipients.Add RCP

NewMail.Send