MailNotifier.php 473 B

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