hate

5841 经验值

<?php

return [

'sendcloud' => [
    'api_user' => env('SEND_CLOUD_USER'),
    'api_key'  => env('SEND_CLOUD_KEY'),
],

];

MAIL_DRIVER=sendcloud
SEND_CLOUD_USER=Hacking_test_mWeGIq
SEND_CLOUD_KEY=不给你看

/**

  • SendCloudTransport constructor.
    *

  • @param $api_user

  • @param $api_key
    */

    public function __construct($api_user, $api_key)
    {

    // $this->api_user = env(SEND_CLOUD_USER);
    // $this->api_key = env(SEND_CLOUD_KEY);
    $this->api_user = $api_user;
    $this->api_key = $api_key;

    }
    

为何读取不到呢

我直接给写死了嘿嘿,
我找不到他在哪里读取了env里面的user和key

他在哪里读取的 key 和user
我在env里面配置的了
public function __construct($api_user, $api_key)

{
    $this->api_user = $api_user;
    $this->api_key  = $api_key;
}

应用场景啊,就个那个laravel社区能自己做出来

我学到现在,很多东西都会,但是自己做不出来,矛盾

难道用laravel 就是用各种插件吗