This is a discussion on Multiple recipients possible in eMail script? within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi Is it possible to have multiples recipients receive the results of a form? I don't mean BCC. I ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi
Is it possible to have multiples recipients receive the results of a form? I don't mean BCC. I want the user to be able to select from a checkbox list the people they want to send the form to. I'm using the forMailer from scripts.dbmasters.net as it's very secure and simple to use. I'm just wondering what sort of modifications need to be done to it. Or if another script exists. Thanks http://scripts.dbmasters.net/files/formmailer.zip |
|
|||
|
StreamLine wrote:
> Is it possible to have multiples recipients receive the results of a > form? I don't mean BCC. I want the user to be able to select from a > checkbox list the people they want to send the form to. I'm using the > forMailer from scripts.dbmasters.net as it's very secure and simple to > use. I'm just wondering what sort of modifications need to be done to > it. Or if another script exists. > When you want to send seperate mails to multiple recepients, you do mean Bcc. If you use Bcc, each recepient will only see his/her email address. Alternatively, you can add comma-seperated email addresses to the To: header. This way, all recepients will be shown in each received email. If the solution that you had in mind was calling the mail function seperately for each recepient, drop it, because this is very inefficient. JW |