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.CREATERICHTEXTITE M("body")
Call NotesRTF.APPENDTEXT("Hello All")
Call NotesRTF.ADDNEWLINE(2)
Call NotesRTF.APPENDTEXT("Regar ds 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.
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.CREATERICHTEXTITE
Call NotesRTF.APPENDTEXT("Hello
Call NotesRTF.ADDNEWLINE(2)
Call NotesRTF.APPENDTEXT("Regar
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
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.