J
jacobe2008
I have the following table in Access
Email Field1
[email protected] message1
[email protected] message2
[email protected] message3
I would like to send one email to [email protected] that lists everything in
Field1.
Sample email:
Dear person1, please look at message1, message2, message3
Currently I have a VBA code that sends 3 emails to [email protected]. The
first email has message1, the second email has message 2, and the third email
has message 3.
My VBA code looks like the following (in pseudo code):
While Not end of table
Make an email message
myItem.HTMLBody = Field1
myItem.Display
myItem.Send
rst.MoveNext
Wend
Any idea how I can modify this code to send just one email to person1@email.
com?
Email Field1
[email protected] message1
[email protected] message2
[email protected] message3
I would like to send one email to [email protected] that lists everything in
Field1.
Sample email:
Dear person1, please look at message1, message2, message3
Currently I have a VBA code that sends 3 emails to [email protected]. The
first email has message1, the second email has message 2, and the third email
has message 3.
My VBA code looks like the following (in pseudo code):
While Not end of table
Make an email message
myItem.HTMLBody = Field1
myItem.Display
myItem.Send
rst.MoveNext
Wend
Any idea how I can modify this code to send just one email to person1@email.
com?