Hi all, I need help passing the Email address in to Lotus Notes using DoCmd.SendObject& Snapview. All that seems to pass is the subject line. Any help will be great. Thanks. Here is my code.
Dim strTo As String
Dim strCC As String
Dim strBcc As String
Dim strSub As String
Dim strBody As String
strTo = "test@test.com"
strCC = "test"
strBcc = "test"
strSub = "test"
strBody = "Test"
DoCmd.SendObject acSendReport, "rptLookUp", "Snapshot Format (*.snp)", strTo, strCC, strBcc, strSub, strBody, False
End Sub
Dim strTo As String
Dim strCC As String
Dim strBcc As String
Dim strSub As String
Dim strBody As String
strTo = "test@test.com"
strCC = "test"
strBcc = "test"
strSub = "test"
strBody = "Test"
DoCmd.SendObject acSendReport, "rptLookUp", "Snapshot Format (*.snp)", strTo, strCC, strBcc, strSub, strBody, False
End Sub