sending email questions

S

SAC

I'm using Access 2000 and Outlook 2000 to send email to about 500 - 1000
addresses.

Two problems:

1). The sending stops after about 100 - 200 addresses.

Currently I'm looping through the code (recordset) one address at a
time. It only sends 100 - 200 and then stops.

Is this a timing problem of some kind?

Should I add all the addresses into the Recipients first and then
resolve them using the Recipients.Add?

Loop through this:
Set objOutlookRecip = .Recipients.Add(rs!Email)

Then do this:
objOutlookRecip.Resolve

2). Graphic does not get send with email.

This emailing process starts with me receiving an email and then
copying the html code into a memo field on a form, filling out some other
controls, then clicking
a command button to run the code.

The graphic SOMETIMES shows up correctly in Outlook but not in my
brower (IE6) with SBC DSL .

Any ideas?
 
Top