Emailing from a query

  • Thread starter Thread starter Robert Stanke
  • Start date Start date
R

Robert Stanke

Could someone please lead me in the right direction to get instruction on how
to do the following (NOTE: I have both Outlook 2007 and Access 2007 loaded on
my machine):

I have a query that pulls certain contacts based on a set of criteria. The
data results can be anywhere between 10-250 contacts. I want to be able to
trigger an email to go out to those contacts from the query. How would I do
this?

Thanks!

Robert
 
Queries don't have events so they are not capable of doing this. You need
vba code that reads through the recordset created by the query and sends the
desired email to each person in the list. Be aware that if you are using a
newer version of Outlook, you will run afoul of security. Take a look at
the emailer sold by FMS at www.fmsinc.com if you need to send bulk email.
 
As Pat mentions, you need to use a form to trigger an event. She also
mentions that Outlook will stop each email with a security warning if you
want individual emails to go out. Besides using SMTP or CDO, or a program
such as FMS's email app, you can also use Outlook Redemption:

http://www.dimastr.com/redemption/

to simply kill the warning.
 

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

Back
Top