This topic is locked

MassMailer Template - Multiple Comma Separated Emails

10/7/2018 8:38:58 PM
PHPRunner General questions
M
MikeB941 author

Does the MassMailer Template support an email "to" field that contains multiple comma separated email addresses?
Many thanks for your help.

HJB 10/8/2018

quote
Where you print the current email address on the page ($row['email']) use the following to accumulate a list of email addresses in the variable:
$email.=$row['email'].",";
Once you processed all records $email variable contains the list of comma separate email addresses.
unquote ex http://asprunner.com/forums/topic/20260-email-multiple-recipients-query-based/

admin 10/8/2018

Yes, it does support it.

M
MikeB941 author 10/8/2018

Thanks so much for the reply -
Our situation is when we process our mass email list, our email address field will often contain multiple comma separated email addresses for the client, a parent and a manager (3 or more email addresses) that need to receive a SINGLE email addressed to all 3 of them (as opposed to 3 separate emails going to each of them).
Will the MassMailer Template handle this?
Many thanks again.

HJB 10/8/2018

Again ..., quoting ADMIN's comments on the issue as above: Yes, it does support it.
You need to understand that this your wished feature is just a BY-PASS product of the massmailer,

simply becoz that product is originally flagged-off "Making the web easier" that way, it allows

to run SQL query driven REPORTS as mail attachment on certain pre-defined database search criteria.
In other words, it is NOT an ordinary massmailer program like that, it's the HOTTEST machinery in

town when e-mail recipients want to get (cumulative) REPORTS on time-intervalled automated basis.

admin 10/8/2018

Yes, it will handle this kind of scenario.