Jump to content

How To Send PHP Email To 100+ Email Addresses


phpQuestioner

Recommended Posts

I have a script that send out html email and I have over 100 email address from people who would like to join my newsletter. But I cannot get my script to email all 100+ of these people. Any one know how I can do this?

 

Here Is My Script

 

<?php

$to="customer1@yahoo.com,customer2@gmail.com"; // and so on - over 100 addresses
$reply="noreply@companyname.com";
$from="Company Name Here";
$subject="Newsletter";
$message="<!--html content here-->";

@mail($to ,$subject ,$message ,"From: $from\nReply-to: $reply\nContent-Type: text/html; charset=iso-8859-1") ;

?>

Link to comment
Share on other sites

<?php

 

$to="customer1@yahoo.com,customer2@gmail.com"; // and so on - over 100 addresses

$reply="noreply@companyname.com";

$from="Company Name Here";

$subject="Newsletter";

$message="<!--html content here-->";

 

$to = explode(',', $to);

foreach($to as $s) {

  @mail($s ,$subject ,$message ,"From: $from\nReply-to: $reply\nContent-Type: text/html; charset=iso-8859-1") ;

}

 

?>

Link to comment
Share on other sites

basically... you got 2 options...

1) send out one email with many To:'s... makes some email servers mad...

2) send out many emails with 1 To:'s... works a little slower on the user's end...

 

<?php
$to[]='customer1@yahoo.com';
$to[]='customer2@gmail.com';

$reply="noreply@companyname.com";
$from="Company Name Here";
$subject="Newsletter";
$message="<!--html content here-->";

$to=implode(",",$to);
mail($to, $subject, $message, $headers);
?>

or

foreach($to as $t){
mail($t, $subject, $message, $headers);
}

 

both of which should work... considering your headers are set properly...

 

you might also wanna check with your host, see if theres a limit on how many people you can send an email to at once... if its too low... choose option 2

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.