mail-test.php 518 B

1234567891011121314
  1. <?php
  2. return [
  3. 'driver' => "smtp",
  4. 'host' => "smtp.qq.com", // 根据你的邮件服务提供商来填
  5. 'port' => "465",
  6. 'encryption' => "ssl", // 同上 一般是tls或ssl
  7. 'username' => '751066209@qq.com', //你smtp服务的账号
  8. 'password' => 'rhfkbozjywxsbfih', //你smtp服务的密码
  9. 'from' => [
  10. 'address' => '751066209@qq.com', //接收者邮箱显示的来源邮箱地址
  11. 'name' => env('APP_NAME', '希梦耐康'), //接收者邮箱显示的来源名称
  12. ],
  13. ];