SendCloud官网https://www.sendcloud.net/
准备:SendCloud官网注册账号,每天有免费发送条数,获取APP_USER、APP_KEY、模板
1、安装naux/sendcloud拓展
composer require naux/sendcloud
2、注册
\Naux\Mail\SendCloudServiceProvider::class,
3、env配置
MAIL_DRIVER=sendcloud
SEND_CLOUD_USER= ***
SEND_CLOUD_KEY= ***
4、控制器使用
private function sendEmail($email){
$data = ['name'=>'jack'];
$template =new SendCloudTemplate('***',$data);//yourTemplateName
Mail::raw($template,function ($message) use ($email){
$message->from('**@***','***');
$message->to($email);
});
}