├── .gitignore ├── .php_cs.dist ├── .travis.yml ├── CHANGELOG ├── Command ├── AbstractSwiftMailerCommand.php ├── DebugCommand.php ├── NewEmailCommand.php └── SendEmailCommand.php ├── DataCollector └── MessageDataCollector.php ├── DependencyInjection ├── Compiler │ ├── EnsureNoHotPathPass.php │ └── RegisterPluginsPass.php ├── Configuration.php ├── SmtpTransportConfigurator.php ├── SwiftmailerExtension.php └── SwiftmailerTransportFactory.php ├── EventListener └── EmailSenderListener.php ├── LICENSE ├── README.md ├── Resources ├── config │ ├── console.xml │ ├── schema │ │ └── swiftmailer-1.0.xsd │ └── swiftmailer.xml ├── doc │ └── index.rst ├── meta │ └── LICENSE └── views │ └── Collector │ ├── icon.svg │ └── swiftmailer.html.twig ├── SwiftmailerBundle.php ├── Tests ├── Command │ └── SendEmailCommandTest.php └── DependencyInjection │ ├── Fixtures │ └── config │ │ ├── php │ │ ├── antiflood.php │ │ ├── disable_delivery.php │ │ ├── empty.php │ │ ├── full.php │ │ ├── many_mailers.php │ │ ├── null.php │ │ ├── null_mailer.php │ │ ├── one_mailer.php │ │ ├── redirect.php │ │ ├── redirect_multi.php │ │ ├── redirect_single.php │ │ ├── sender_address.php │ │ ├── sendmail.php │ │ ├── sendmail_no_command.php │ │ ├── smtp.php │ │ ├── spool.php │ │ ├── spool_memory.php │ │ ├── spool_service.php │ │ ├── spool_service_invalid.php │ │ ├── stream_options.php │ │ ├── url_with_empty_options.php │ │ └── urls.php │ │ ├── xml │ │ ├── antiflood.xml │ │ ├── disable_delivery.xml │ │ ├── empty.xml │ │ ├── full.xml │ │ ├── mail.xml │ │ ├── many_mailers.xml │ │ ├── null.xml │ │ ├── null_mailer.xml │ │ ├── one_mailer.xml │ │ ├── redirect.xml │ │ ├── redirect_multi.xml │ │ ├── redirect_single.xml │ │ ├── sender_address.xml │ │ ├── sendmail.xml │ │ ├── sendmail_no_command.xml │ │ ├── smtp.xml │ │ ├── spool.xml │ │ ├── spool_memory.xml │ │ ├── spool_service.xml │ │ ├── spool_service_invalid.xml │ │ ├── stream_options.xml │ │ ├── url_with_empty_options.xml │ │ └── urls.xml │ │ └── yml │ │ ├── antiflood.yml │ │ ├── disable_delivery.yml │ │ ├── disable_delivery_env.yml │ │ ├── empty.yml │ │ ├── env_variable.yml │ │ ├── full.yml │ │ ├── mail.yml │ │ ├── many_mailers.yml │ │ ├── null.yml │ │ ├── null_mailer.yml │ │ ├── one_mailer.yml │ │ ├── redirect.yml │ │ ├── redirect_multi.yml │ │ ├── redirect_single.yml │ │ ├── sender_address.yml │ │ ├── sendmail.yml │ │ ├── sendmail_no_command.yml │ │ ├── smtp.yml │ │ ├── spool.yml │ │ ├── spool_memory.yml │ │ ├── spool_service.yml │ │ ├── spool_service_invalid.yml │ │ ├── stream_options.yml │ │ ├── url_with_empty_options.yml │ │ └── urls.yml │ ├── SwiftmailerExtensionTest.php │ └── SwiftmailerTransportFactoryTest.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Command/AbstractSwiftMailerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Command/AbstractSwiftMailerCommand.php -------------------------------------------------------------------------------- /Command/DebugCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Command/DebugCommand.php -------------------------------------------------------------------------------- /Command/NewEmailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Command/NewEmailCommand.php -------------------------------------------------------------------------------- /Command/SendEmailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Command/SendEmailCommand.php -------------------------------------------------------------------------------- /DataCollector/MessageDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/DataCollector/MessageDataCollector.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/EnsureNoHotPathPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/DependencyInjection/Compiler/EnsureNoHotPathPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/RegisterPluginsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/DependencyInjection/Compiler/RegisterPluginsPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/SmtpTransportConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/DependencyInjection/SmtpTransportConfigurator.php -------------------------------------------------------------------------------- /DependencyInjection/SwiftmailerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/DependencyInjection/SwiftmailerExtension.php -------------------------------------------------------------------------------- /DependencyInjection/SwiftmailerTransportFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/DependencyInjection/SwiftmailerTransportFactory.php -------------------------------------------------------------------------------- /EventListener/EmailSenderListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/EventListener/EmailSenderListener.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Resources/config/console.xml -------------------------------------------------------------------------------- /Resources/config/schema/swiftmailer-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Resources/config/schema/swiftmailer-1.0.xsd -------------------------------------------------------------------------------- /Resources/config/swiftmailer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Resources/config/swiftmailer.xml -------------------------------------------------------------------------------- /Resources/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Resources/doc/index.rst -------------------------------------------------------------------------------- /Resources/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Resources/meta/LICENSE -------------------------------------------------------------------------------- /Resources/views/Collector/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Resources/views/Collector/icon.svg -------------------------------------------------------------------------------- /Resources/views/Collector/swiftmailer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Resources/views/Collector/swiftmailer.html.twig -------------------------------------------------------------------------------- /SwiftmailerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/SwiftmailerBundle.php -------------------------------------------------------------------------------- /Tests/Command/SendEmailCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/Command/SendEmailCommandTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/antiflood.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('swiftmailer', [ 4 | 'antiflood' => true, 5 | ]); 6 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/disable_delivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/disable_delivery.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/empty.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('swiftmailer', []); 4 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/full.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/many_mailers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/many_mailers.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/null.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('swiftmailer', [ 4 | 'transport' => null, 5 | ]); 6 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/null_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/null_mailer.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/one_mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/one_mailer.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/redirect.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/redirect_multi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/redirect_multi.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/redirect_single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/redirect_single.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/sender_address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/sender_address.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/sendmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/sendmail.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/sendmail_no_command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/sendmail_no_command.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/smtp.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/spool.php: -------------------------------------------------------------------------------- 1 | loadFromExtension('swiftmailer', [ 4 | 'spool' => true, 5 | ]); 6 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/spool_memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/spool_memory.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/spool_service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/spool_service.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/spool_service_invalid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/spool_service_invalid.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/stream_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/stream_options.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/url_with_empty_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/url_with_empty_options.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/php/urls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/php/urls.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/antiflood.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/antiflood.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/disable_delivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/disable_delivery.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/empty.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/full.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/mail.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/many_mailers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/many_mailers.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/null.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/null.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/null_mailer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/null_mailer.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/one_mailer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/one_mailer.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/redirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/redirect.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/redirect_multi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/redirect_multi.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/redirect_single.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/redirect_single.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/sender_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/sender_address.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/sendmail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/sendmail.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/sendmail_no_command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/sendmail_no_command.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/smtp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/smtp.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/spool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/spool.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/spool_memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/spool_memory.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/spool_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/spool_service.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/spool_service_invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/spool_service_invalid.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/stream_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/stream_options.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/url_with_empty_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/url_with_empty_options.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/xml/urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/xml/urls.xml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/antiflood.yml: -------------------------------------------------------------------------------- 1 | swiftmailer: 2 | antiflood: true 3 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/disable_delivery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/disable_delivery.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/disable_delivery_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/disable_delivery_env.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/empty.yml: -------------------------------------------------------------------------------- 1 | swiftmailer: ~ 2 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/env_variable.yml: -------------------------------------------------------------------------------- 1 | swiftmailer: 2 | url: '%env(SWIFTMAILER_URL)%' 3 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/full.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/mail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/mail.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/many_mailers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/many_mailers.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/null.yml: -------------------------------------------------------------------------------- 1 | swiftmailer: 2 | transport: ~ 3 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/null_mailer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/null_mailer.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/one_mailer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/one_mailer.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/redirect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/redirect.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/redirect_multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/redirect_multi.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/redirect_single.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/redirect_single.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/sender_address.yml: -------------------------------------------------------------------------------- 1 | swiftmailer: 2 | sender_address: noreply@test.com 3 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/sendmail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/sendmail.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/sendmail_no_command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/sendmail_no_command.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/smtp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/smtp.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/spool.yml: -------------------------------------------------------------------------------- 1 | swiftmailer: 2 | spool: true 3 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/spool_memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/spool_memory.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/spool_service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/spool_service.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/spool_service_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/spool_service_invalid.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/stream_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/stream_options.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/url_with_empty_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/url_with_empty_options.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config/yml/urls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/Fixtures/config/yml/urls.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/SwiftmailerExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/SwiftmailerExtensionTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/SwiftmailerTransportFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/Tests/DependencyInjection/SwiftmailerTransportFactoryTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/swiftmailer-bundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------