जैसा कि अन्य कहते हैं कि प्रति प्राप्तकर्ता एक मेल बेहतर फिट है।
आप एक पुस्तकालय, एक कोशिश SwiftMailer आप के लिए गंदा काम करते हैं देना चाहते हैं http://swiftmailer.org
यहाँ एक उदाहरण सीधे डॉक्स से है:
require_once 'lib/swift_required.php';
//Create the Transport
$transport = Swift_SmtpTransport::newInstance('localhost', 25);
//Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);
//Create a message
$message = Swift_Message::newInstance('Wonderful Subject')
->setFrom(array('[email protected]' => 'John Doe'))
->setTo(array('[email protected]', '[email protected]' => 'A name'))
->setBody('Here is the message itself')
;
//Send the message
$numSent = $mailer->batchSend($message);
printf("Sent %d messages\n", $numSent);
/* Note that often that only the boolean equivalent of the
return value is of concern (zero indicates FALSE)
if ($mailer->batchSend($message))
{
echo "Sent\n";
}
else
{
echo "Failed\n";
}
*/
यह भी एक अच्छा Antiflood प्लगइन है : http://swiftmailer.org/docs/antiflood-plugin-howto
स्रोत
2011-02-14 16:43:30
पीयर सुझाव के लिए धन्यवाद। – Francisc