Hi,
I have been using this code to send an individual email from a record by d/clicking on the email field, and it works great:
Dim StrInput As String
StrInput = "mailto:" & Me![EmailAddress]
Application.FollowHyperlink StrInput, , True
What I would like to do is to send the email to multiple recipients (cc) and wonderered if there was a simple way of doing this. For example could i run a querry to call up all the email addresses and then somehow send the email to those addresses (using my default mail client (OE))?
Thanks
Adrian
I have been using this code to send an individual email from a record by d/clicking on the email field, and it works great:
Dim StrInput As String
StrInput = "mailto:" & Me![EmailAddress]
Application.FollowHyperlink StrInput, , True
What I would like to do is to send the email to multiple recipients (cc) and wonderered if there was a simple way of doing this. For example could i run a querry to call up all the email addresses and then somehow send the email to those addresses (using my default mail client (OE))?
Thanks
Adrian