Dim OLApp As New Outlook.Application
Dim OLMsg As Outlook.MailItem
Set OLMsg = OLApp.CreateItem(olMailItem)
With OLMsg
.Recipients.Add "your_email_to_person@their_email_address"
.Subject = "What you want in the subject line"
.Attachments.Add Name_of_file_to_attach_if_you_need_to_attach_a_file
.Body "The_body_text_of_the_email"
.Send
End With
MsgBox "Emailing Complete", vbOKOnly + vbInformation, "Email Sent"
Set OLApp = Nothing
Set OLMsg = Nothing