安装:
在项目目录下执行
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('us@example.com', 'Laravel');
$message->to('foo@example.com')->cc('bar@example.com');
});
用法和普通发送类似,不过需要将 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)
});