Skip to content

Instantly share code, notes, and snippets.

@adatta02
Created February 8, 2013 23:47
Show Gist options
  • Save adatta02/4742925 to your computer and use it in GitHub Desktop.
Save adatta02/4742925 to your computer and use it in GitHub Desktop.
foreach( $toEmail in $listOfEmails ){
$message = Swift_Message::newInstance()
->setFrom(sfConfig::get('app_sf_guard_plugin_default_from_email'))
->setTo( array(toEmail) )
->setSubject("...")
->setBody( "..." );
sfContext::getInstance()->getMailer()->send($message);
sleep(5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment