SendObject with Outlook Express

B

Boxman

Hi

I've written a SendObject method in Access 2000 VBA to put a mailing list
string (strMailingList) into the BCC field of a new message in Outlook
Express 6.

OK so far but I want the email to go out using my custom Outlook Express
stationery which uses my business logo masthead - this seems to be a
problem...

I have tried using the template parameter and message text parameter in
SendObject and also set up OE6 to always use my stationery for new
messages - but no joy :(

Any help anyone can offer is much appreciated but please don't suggest using
Outlook automation objects as although I know this would work my client
doesn't have Outlook!

thanks

Bob


=====================

Code extract follows:

Dim templatePath As String
templatePath = "C:\Program Files\Common Files\Microsoft
Shared\Stationery\customstationery.htm"

DoCmd.SendObject , , acFormatHTML, , , strMailingList, , , True,
templatePath
 

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