Toplu SwiftMailer ile e-posta gönder

1 Cevap php

Şu anda SwiftMailer (50 kadar) çeşitli kullanıcılara e-postalar göndermek için kullanıyorum. Ben kurdunuz ve düzgün çalışan, ancak, benim MySQL veritabanı alıcıları çekin ve bunları göndermek için yineleme nasıl emin değilim.

İşte ben şu anda ne var:

<?php  
require_once 'swift/lib/swift_required.php';
$mailer = Swift_Mailer::newInstance(
Swift_SmtpTransport::newInstance('smtp.connection.com', 25)  
->setUsername('myUserName')
->setPassword('myPassword')
 );

 $mailer->registerPlugin(new Swift_Plugins_AntiFloodPlugin(9));

 $message = Swift_Message::newInstance()

  ->setSubject('Let\'s get together today.')

  ->setFrom(array('myfrom@domain.com' => 'From Me'))

  ->setTo(array('tom_jones@domain.com' => 'Tom Jones', 'jsmith@domain.com' => 'Jane Smith', 'j_doe@domain.com' => 'John Doe', 'bill_watson@domain.com' => 'Bill Watson',))

  ->setBody('Here is the message itself')
  ->addPart('<b>Test message being sent!!</b>', 'text/html')
   ;

  $numSent = $mailer->batchSend($message, $failures);

  printf("Sent %d messages\n", $numSent);

Yukarıda gördüğünüz gibi, Setto de, ben veritabanında benim kullanıcıların yinelemek istiyorum. Gibi bir şey:

SELECT first, last, email FROM users WHERE is_active=1

documentation şöyle:

Note: Multiple calls to setTo() will not add new recipients – each call overrides the previous calls. If you want to iteratively add recipients, use the addTo() method.

Ama ben emin değilim: 1: Nasıl bu script benim datebase seçin ve: 2: benim durumumda addto () yöntemi kullanmak gerekir isterseniz. Bu düzgün kurmak konusunda herhangi bir öneriniz?

Teşekkürler!

1 Cevap

Ben burada soru doğru, ama bunu yapmanın bir yolu var oldukça emin değilim:

<?php
$message = Swift_Message::newInstance()
  ->setSubject('Let\'s get together today.')
  ->setFrom(array('myfrom@domain.com' => 'From Me'))
  ->setBody('Here is the message itself')
  ->addPart('<b>Test message being sent!!</b>', 'text/html')
;

$data = mysql_query('SELECT first, last, email FROM users WHERE is_active=1') or die(mysql_error());
while($row = mysql_fetch_assoc($data))
{
   $message->addTo($row['email'], $row['first'] . ' ' . $row['last']);
}

$message->batchSend();
?>

Ben ne istediğini umuyoruz.