📧 Aliyun DrirectMail Transport for Laravel Application.
$ composer require overtrue/laravel-mail-aliyun -vvvAPI documention: https://help.aliyun.com/document_detail/29435.html
// config/services.php
'directmail' => [
'key' => env('ALIYUN_ACCESS_KEY_ID'),
'address_type' => 1,
'from_alias' => null,
'click_trace' => 0,
'version' => '2015-11-23',
'region_id' => null,
],Set default mail driver:
//.env
MAIL_DRIVER=directmailPlease reference the official doc: Laravel Sending mail
MIT