Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DoCmd.SendObject Snapview and Lotus Notes

Status
Not open for further replies.

JOD59

Technical User
Dec 17, 2003
39
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top