See the following. All you will need to do is find the field name of the BCC field.
Private Sub SendMessage(strAddressee As String, strSubject As String, strBody As String)
On Error GoTo ErrorHandler
'Try to switch to Notes. If Notes not open then exit sub-routine
AppActivate "Lotus Notes"
AppActivate "Microsoft Access"
Dim objNotesWS As Object
Dim notesdb As Object
Set objNotesWS = CreateObject("Notes.NotesUIWorkspace")
Set notesdb = objNotesWS.COMPOSEDOCUMENT(, , "memo")
notesdb.fieldsettext "EnterSendTo", strAddressee
notesdb.fieldsettext "Subject", strSubject
notesdb.fieldsettext "Body", strBody
notesdb.Send
notesdb.Close
Set notesdb = Nothing
Set objNotesWS = Nothing
ExitHere:
Exit Sub
ErrorHandler:
Select Case Err.Number
Case Else
MsgBox Err.Number & " " & Err.Description & "."
Resume ExitHere
End Select
End Sub
Please do not feed the trolls.....