芝麻web文件管理V1.00
编辑当前文件:/home/shaabmuni/crm/app/Jobs/SendEmail.php
from = $from; $this->to = $to; $this->message = $message; $this->template = $template_variables; } /** * Execute the job. * * @return void */ public function handle(PhpMailController $PhpMailController) { try { $p = $PhpMailController->sendEmail($this->from, $this->to, $this->message, $this->template); return $p; } catch (\Exception $e) { logger()->warning($e->getMessage()); session()->flash('fails', $e->getMessage()); } } }