laravel 项目笔记之SendCloud 驱动

安装:

在项目目录下执行

composer require naux/sendcloud

配置

修改 config/app.php,添加服务提供者

'providers' => [
    Naux\Mail\SendCloudServiceProvider::class,
];

 .env 中配置你的密钥,(这里自己去SendCloud 官网注册一个账号,生成KEY) 并修改邮件驱动为 sendcloud

MAIL_DRIVER=sendcloud

SEND_CLOUD_USER=   # 创建的 api_user
SEND_CLOUD_KEY=    # 分配的 api_key

使用

普通发送:

Mail::send('emails.welcome', $data, function ($message) {
    $message->from('[email protected]', 'Laravel');

    $message->to('[email protected]')->cc('[email protected]');
});

模板发送

用法和普通发送类似,不过需要将 body 设置为 SendCloudTemplate 对象

// 模板变量
$data = ['url' => 'http://naux.me'];
$template = new SendCloudTemplate('模板名', $data);

Mail::raw($template, function ($message) use ($user) {  // 这儿传入$user
    $message->from('fasong@邮件地址.com', 'Laravel');

    $message->to($user->email);(用户邮件地址,这里可直接传入$user->email)
});

你可能感兴趣的:(larvael)