Since you asked so nicely, I suppose.
Note: If you are attaching the results of a report to the e-mail, you must output it to a file and attach the file.
Function SendTPAEmail(strRecipient As Variant, strPath1 As String)
Dim objNotesSession As Object
Dim objNotesDatabase As Object
Dim objNotesDocument As Object
Dim strText As String
Dim strMsg As String
Dim varRecipient As Variant
Dim objAttach As Object
Dim objEmbed As Object
Set objNotesSession = CreateObject("Notes.Notessession"

Set objNotesDatabase = objNotesSession.GETDATABASE("", ""

Call objNotesDatabase.OPENMAIL
Set objNotesDocument = objNotesDatabase.CREATEDOCUMENT
strText = ""
varRecipient = Split(strRecipient, ";", -1)
Call objNotesDocument.REPLACEITEMVALUE("SendTo", varRecipient)
Call objNotesDocument.REPLACEITEMVALUE("Subject", "This is an Email"

Call objNotesDocument.REPLACEITEMVALUE("Body", strText)
Set objAttach = objNotesDocument.CREATERICHTEXTITEM("Attachment"

Set objEmbed = objAttach.EMBEDOBJECT(1454, "", strPath1, "Attachment"
objNotesDocument.SAVEMESSAGEONSEND = True
Call objNotesDocument.SEND(False)
Set objNotesSession = Nothing
End Function