TestEmailStaticConfig.php 419 B

123456789101112131415161718192021
  1. <?php
  2. namespace TestApp\Config;
  3. use Cake\Core\StaticConfigTrait;
  4. class TestEmailStaticConfig
  5. {
  6. use StaticConfigTrait;
  7. /**
  8. * Email driver class map.
  9. *
  10. * @var array
  11. */
  12. protected static $_dsnClassMap = [
  13. 'debug' => 'Cake\Mailer\Transport\DebugTransport',
  14. 'mail' => 'Cake\Mailer\Transport\MailTransport',
  15. 'smtp' => 'Cake\Mailer\Transport\SmtpTransport',
  16. ];
  17. }