sendObject question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form with a button which, when clicked, opens Outlook, puts the To,
the CC, the Subject Line in place, and even writes a message to go with some
information spun out of query. It's very nice and extremely useful. Just one
catch...

It always, always, always comes up in plain text -- courier font. I want
Outlook to open in the same way that it does when I click the 'New' email
button: with an Ariel Font and my company logo at the bottom of the page. How
can I achieve that?

_Kevin
 
Kevin said:
I have a form with a button which, when clicked, opens Outlook, puts
the To, the CC, the Subject Line in place, and even writes a message
to go with some information spun out of query. It's very nice and
extremely useful. Just one catch...

It always, always, always comes up in plain text -- courier font. I
want Outlook to open in the same way that it does when I click the
'New' email button: with an Ariel Font and my company logo at the
bottom of the page. How can I achieve that?

Do do that, you can't use SendObject; you have to automate Outlook
instead. In your automation code, instead of setting the message's Body
property, you'll set its HTMLBody property.

Tony Toews probably has a pointer to instructions on how to automate
Outlook here:

http://www.granite.ab.ca/access/email/outlook.htm
 
Back
Top