芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Notifications/NewClientTask.php
task = $task; $this->emailSetting = EmailNotificationSetting::userAssignTask(); $this->company = $this->task->company; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = ['database']; if ($this->emailSetting->send_email == 'yes' && $notifiable->email_notifications && $notifiable->email != '') { array_push($via, 'mail'); } return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return MailMessage */ public function toMail($notifiable): MailMessage { $dueDate = (!is_null($this->task->due_date)) ? $this->task->due_date->format($this->company->date_format) : null; $content = ucfirst($this->task->heading) . ' #' . $this->task->task_short_code . '
' . __('email.dueOn') . ': ' . $dueDate . '
'; return parent::build() ->subject(__('email.newClientTask.subject') . ' #' . $this->task->task_short_code . ' - ' . config('app.name') . '.') ->greeting(__('email.hello') . ' ' . mb_ucwords($notifiable->name) . ',') ->markdown('mail.task.task-created-client-notification', ['content' => $content]); } /** * Get the array representation of the notification. * * @return array */ public function toArray() { return [ 'id' => $this->task->id, 'created_at' => $this->task->created_at->format('Y-m-d H:i:s'), 'heading' => $this->task->heading ]; } }