Link to home
Create AccountLog in
Avatar of doyle007
doyle007

asked on

Lotus Notes Emailing Using VB

I have a process that send's Emails via Access 2000, VBA.

At the point of creating the body of the Email. I have coded the Body of the Email into the VBA code itself. Like below. This part creates the Body of the Email by appending each line in the code.

Set NotesRTF = NotesDoc.CREATERICHTEXTITEM("body")
  Call NotesRTF.APPENDTEXT("Hello All")
  Call NotesRTF.ADDNEWLINE(2)
  Call NotesRTF.APPENDTEXT("Regards Michael")
  Call NotesRTF.ADDNEWLINE(1)

Rather than do the above, I wish to find out how to extract Information from say a word Doc and place it into the Email body, ( So I can have an email with nice fonts and sizes) . Has anyone done this If so can you please help me out.
I have looked on the net and cannot find any information.
ASKER CERTIFIED SOLUTION
Avatar of Naveen Swamy
Naveen Swamy

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer