Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Send Multiple Emails To Access Query

Status
Not open for further replies.

ilyk2gruv

MIS
Jul 30, 2002
3
US
I am trying to migrate from an "off the shelf" contact manager to one I am working on in MS Access. I have been able to send an email to a single contact using:

-----
Private Sub Email_Click()
On Error GoTo Err_Email_Click

Dim stAppName As String

stAppName = "C:\Program Files\Outlook Express\msimn.exe"
Call Shell(stAppName, 1)

DoCmd.SendObject , , , EmailName

Exit_Email_Click:
Exit Sub

Err_Email_Click:
MsgBox Err.Description
Resume Exit_Email_Click

End Sub
-----

I would like to create a lookup and then send a predefined email to that group.

Any help would be appreciated.
 
Are you looking to bring existing contacts from the existing program into Access and then have an Access only system, or do you want to remain linked to the existing contact manager?
 
I would be importing the contacts into Access. Once that has been completed, then I would only be using Access for the contact manager.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top