Access to Email

A

angela patrikka

Hi
I have an access database, which contains over 1000 names including their
email addresses. I have macro, that takes all the email addresses and
places them into the BCC of a new email using Outlook 2000. Our company
uses MS Exchange. The problem is that not all emails get to the recipents
as some company's see this as spam. Is there a way from Access to send the
email names to Outlook one at a time. Or do I have to purchase a add on in
Outlook to handle this?

Angela
 
A

angela patrikka

Hi Arvin

Thank you, and I understand your concerns, and I am a legit company. I work
for a local council.

Any way

This is what i currently have in my vb code

Private Sub btnEmail_Click()

On Error GoTo Err_btnEmail_Click

Dim stDocName As String

stDocName = "rptEmailAddressList"

DoCmd.OpenReport stDocName, acPreview


Dim stDocName2 As String

stDocName2 = "frmEmailToList"

DoCmd.OpenForm stDocName2


Exit_btnEmail_Click:

Exit Sub

Err_btnEmail_Click:

MsgBox Err.Description

Resume Exit_btnEmail_Click



Do i just replace it now with the new code?

Angela
 

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