Sending Multiple Emails

N

Nick

Does anyone know any code that will allow me to send a
query to multiple individuals email addresses, but only
specifiying the information relating to their account, as
the query could have up to 500 different account details
on it, thanks in advance
 
G

Guest

I just had this issue this morning for my job..
Before proceeding with the usual Outlook & Access coding, the main issue I found is having the text of the emails pre-written, with fake fields inserted into it. These fake fields could like like this sample
"Dear [CustomerName]
We here at Acme Industries have not gotten your payment of [AmountOverdue]. Please payup now
Respond to this email if you are a deadbeat.

The brackets are only to be used for you to insert (replace) with actual Customer names and Amounts Overdue
The only way I have come up with so far is to have specific coding to read through my pre-written email, find the bracketed text, and replace it with the appropriate data (from a recordset of customer data). So for you 500 emails, my program would sift through the pre-written email text 500 times, every time replacing the Customer Name and Amount Overdue. The final output was unique emails for each recipient

Ti


----- Nick wrote: ----

Does anyone know any code that will allow me to send a
query to multiple individuals email addresses, but only
specifiying the information relating to their account, as
the query could have up to 500 different account details
on it, thanks in advanc
 
N

Nick

Thanks Tim, code you tell me what the usual Access and
Outlook usual coding is as I am falling down at this part
as well

-----Original Message-----
I just had this issue this morning for my job...
Before proceeding with the usual Outlook & Access coding,
the main issue I found is having the text of the emails
pre-written, with fake fields inserted into it. These
fake fields could like like this sample:
"Dear [CustomerName]:
We here at Acme Industries have not gotten your
payment of [AmountOverdue]. Please payup now.
Respond to this email if you are a deadbeat."

The brackets are only to be used for you to insert
(replace) with actual Customer names and Amounts Overdue.
The only way I have come up with so far is to have
specific coding to read through my pre-written email, find
the bracketed text, and replace it with the appropriate
data (from a recordset of customer data). So for you 500
emails, my program would sift through the pre-written
email text 500 times, every time replacing the Customer
Name and Amount Overdue. The final output was unique
emails for each recipient.
 

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