You'll have to set up some VBA code to do the work, but it can be done.
Here's a basic example to get you started, it creates a new instance of Outlook, creates a new email item, fills it with the info provided in the variables and then opens it (in Outlook) for the user to see, edit and/or send:
Set ola1 = New Outlook.Application
Set mai1 = ola1.CreateItem(olMailItem)
mai1.To = strTo
mai1.Subject = strSubj
If bolHTML = True Then
mai1.HTMLBody = strBody
Else
mai1.Body = strBody
End If
mai1.Display
More info here (amongst many other places).