Hello Dale,
Yes, you can use Outlook Automation to send an email to each of the email
addresses in your table.
First, create a form which uses your table as its RecordSource.
Then, create a command button on your form and insert the following code (in
the Click event of that command button) that will loop through your form's
recordset and send an email to each email address. You will need to have
references set to the Microsoft Outlook xx.x Object Library and Microsoft
DAO x.xx Object Library. In addition, the email address for each of your
contacts *must be* a text field, not a hyperlink.
Dim oApp As Outlook.Application
Dim objNewMail As Outlook.MailItem
Dim rs as DAO.Recordset
Set rs = me.RecordsetClone
Set oApp = New Outlook.Application
rs.MoveFirst
Do While Not rs.EOF
Set objNewMail = oApp.CreateItem(olMailItem)
With objNewMail
.To = rs!EmailAddress
.Subject = "Your subject here."
.Body = "Your text message here."
.Save
.Send
End With
rs.MoveNext
Loop
hth,