芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Notifications/EventInvite.php
event = $event; $this->company = $this->event->company; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = ['database']; if ($notifiable->email_notifications && $notifiable->email != '') { array_push($via, 'mail'); } return $via; } /** * @param mixed $notifiable * @return MailMessage * @throws \Exception */ public function toMail($notifiable) { $vCalendar = new \Eluceo\iCal\Component\Calendar('www.example.com'); $vEvent = new \Eluceo\iCal\Component\Event(); $vEvent ->setDtStart(new \DateTime($this->event->start_date_time)) ->setDtEnd(new \DateTime($this->event->end_date_time)) ->setNoTime(true) ->setSummary(ucfirst($this->event->event_name)); $vCalendar->addComponent($vEvent); $vFile = $vCalendar->render(); $url = route('events.show', $this->event->id); $url = getDomainSpecificUrl($url, $this->company); return parent::build() ->subject(__('email.newEvent.subject') . ' - ' . config('app.name')) ->greeting(__('email.hello') . ' ' . mb_ucwords($notifiable->name) . ',') ->line(__('email.newEvent.text')) ->line(__('modules.events.eventName') . ': ' . $this->event->event_name) ->line(__('modules.events.startOn') . ': ' . $this->event->start_date_time->format($this->company->date_format . ' - ' . $this->company->time_format)) ->line(__('modules.events.endOn') . ': ' . $this->event->end_date_time->format($this->company->date_format . ' - ' . $this->company->time_format)) ->action(__('email.newEvent.action'), $url) ->line(__('email.thankyouNote')) ->attachData($vFile, 'cal.ics', [ 'mime' => 'text/calendar', ]); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ //phpcs:ignore public function toArray($notifiable) { return [ 'id' => $this->event->id, 'start_date_time' => $this->event->start_date_time->format('Y-m-d H:i:s'), 'event_name' => $this->event->event_name ]; } }