Lotus Notes E-Mail Revisited

B

Bob Barnes

About "2 pages" below here - "Jason - 11/6/03 - 12:00 PM"

I have the code working from within Access 2000, & Doug
Steele's Array suggestion works great. Thank you
gentlemen.

I used to send RTF files from Access 97 via Outlook 97.
I do not have a Notes Designer Client. I realize this is
not a Lotus Notes Newsgroup, but it does find solutions
for integrating Access via Notes.

Hoping someone knows what Notes Property or Method is used
to attach a RTF file...

Maybe similar to...
Set NotesRTF = NotesDoc.createrichtextitem("body")

....from "Jason" "about 2 Newsgroup Pages below"
Set NotesDoc = NotesDB.createdocument
'Send to strTo and set Subject of e-mail
Call NotesDoc.replaceitemvalue("Sendto", strTo)
Call NotesDoc.replaceitemvalue("Subject", "Go Lotus Notes
Go")
'Creating the Body of the E-Mail
Set NotesRTF = NotesDoc.createrichtextitem("body")
Call NotesRTF.appendtext(strNCMR)

TIA - Bob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top