Ş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!