我有Laravel 5.2全新安裝。Laravel 5.2重置密碼+ Mandrill
我以下:
- 我已經建立了我的
.env
文件MAIL_DRIVER=mandrill SECRET=my_mandrill_api_key
- 我已經安裝了狂飲(https://github.com/guzzle/guzzle)
- 我已經設置我的電子郵件中的視圖(https://github.com/laravel/laravel/blob/5.0/resources/views/emails/password.blade.php)
- 我有固定證書問題(PHP cURL error code 60)
因此,似乎一切都正確完成。
當我填寫電子郵箱重新設置密碼,並按下發送密碼重置鏈接按鈕,我得到以下錯誤
Server error:
POST https://mandrillapp.com/api/1.0/messages/send-raw.json
resulted in a500 Internal Server Error
response: {"status":"error","code":-1,"name":"ValidationError","message":"You must specify a key value"}
我檢查我的日誌中山魈(https://mandrillapp.com/settings/api)有我的動作沒有日誌。
從Mandrill的錯誤中,我知道它沒有得到API密鑰,所以出於某種原因,API密鑰和其他值不會傳遞到Mandrill API。
問題:什麼是缺失/錯誤?
注意:現在我正在構建應用程序的本地環境。我的本地環境Windows 10/Bitnami WAMP stack 7 /我也在使用Mandrill API。
消息「:」你必須指定一個鍵值,你可以添加函數的代碼嗎? –
是的,我知道我在.env文件中有正確的API密鑰,但由於某種原因它不會傳遞到mandrill站點? –