mail.php 664 B

1234567891011121314151617
  1. <?php
  2. // Copyright 2019 Hackware SpA <human@hackware.cl>
  3. // "Hackware Web Services Core" is released under the MIT License terms.
  4. return [
  5. 'driver' => strtolower(env('MAIL_DRIVER')), // mail, sendmail or smtp
  6. 'host' => env('MAIL_HOST'),
  7. 'port' => env('MAIL_PORT'),
  8. 'username' => env('MAIL_USERNAME'),
  9. 'password' => env('MAIL_PASSWORD'),
  10. 'encryption' => env('MAIL_ENCRYPTION'), // ssl or tls
  11. 'from_address' => env('MAIL_FROM_ADDRESS'),
  12. 'from_name' => env('MAIL_FROM_NAME'),
  13. 'reply_to_address' => env('MAIL_REPLY_TO_ADDRESS', env('MAIL_FROM_ADDRESS')),
  14. 'reply_to_name' => env('MAIL_REPLY_TO_NAME', env('MAIL_FROM_NAME')),
  15. ];