123456789101112131415161718192021222324 |
- <?php
- namespace App\Servers\MailNotifier;
- use Illuminate\Support\Facades\Mail;
- class MailNotifier{
- public static function send($to_email,$template,$message){
-
- // 邮件发送类
- $mailable = new \App\Mail\VerifyCode;
- // 使用模板
- $mailable->view('emails.'.$template)->subject('项目提醒');
- // 发送内容
- $mailable->with(['name'=>$to_email,'msg'=>$message]);
- // 进行发送
- Mail::to($to_email)->send($mailable);
- }
- }
|