Swiftmailer redirecting plugin in Silex
<?php
$app['mailer'] = $app->share(function ($app) {
$app['mailer.initialized'] = true;
return new \Swift_Mailer($app['swiftmailer.transport']);
});
$app['mailer']->registerPlugin(new \Swift_Plugins_RedirectingPlugin($config['swiftmailer']['delivery_address'], array('#^'.$config['swiftmailer']['delivery_address'].'$#')));