PHP / Javascript kullanarak birden fazla kullanıcıya e-posta gönder

2 Cevap php

Ben bizim veritabanı (MySQL) kullanarak tüm müşterilerine e-postalar göndermek için daha kolay bir yol bulmaya çalışıyordu. Ben benim müşterilerine tüm e-postaları seçebilir ve ben Konu, mesaj ekleyebilir ve web siteme ziyade postanın her kopyalama benim tüm müşterilerimize göndermek bir yolu olup olmadığını görmek istedim.

Bunu yapmak için SMTP entegre bir yolu var mı? PHP veya javascript kullanarak ya.

Teşekkürler.

2 Cevap

I SwiftMailer .. bu benim için harikalar yaratıyor kullanın.

*  Send emails using SMTP, sendmail, postfix or a custom Transport implementation of your own
* Support servers that require username & password and/or encryption
* Protect from header injection attacks without stripping request data content
* Send MIME compliant HTML/multipart emails
* Use event-driven plugins to customize the library
* Handle large attachments and inline/embedded images with low memory use



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('john@doe.com' => 'John Doe'))
  ->setTo(array('receiver@domain.org', 'other@domain.org' => '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";
}

read more here .. http://swiftmailer.org/docs/batchsend-method