0

I'm creating a form on MS Access 2003 that will send out a html email newsletter to a list of email addresses. How do I put a preview button into my form that will let me preview my email before I send it? I think I have to use an active-x control, but I have no idea where to start.

Tony Toews
  • 7,850
  • 1
  • 22
  • 27
dmr
  • 21,811
  • 37
  • 100
  • 138

3 Answers3

2

see if tutorials at following link helps you

http://www.granite.ab.ca/access/email.htm

Saar
  • 8,286
  • 5
  • 30
  • 32
0

Add a web browser object (active x control). Navigate to about:blank, then call myBrowserObject.Document.Write("all yor html).

dmr
  • 21,811
  • 37
  • 100
  • 138
  • I would be a little careful about assuming a web browser will show HTML in the same way as email. Outlook is not happy with CSS, for the most part. – Fionnuala Dec 18 '09 at 01:12
0

A2KSHTML.zip is an HTML Editor built around the MS Web Browser control.

In Access 2007 you can set a memo field's TextFormat property to RichText. See Insert or add a rich text field

Tony Toews
  • 7,850
  • 1
  • 22
  • 27