whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Zoom
/
Notifications
/
Upload File:
files >> /home/kckglobal/www/portal/Modules/Zoom/Notifications/MeetingReminder.php
<?php namespace Modules\Zoom\Notifications; use App\Notifications\BaseNotification; use Modules\Zoom\Entities\ZoomMeeting; class MeetingReminder extends BaseNotification { private $event; /** * Create a new notification instance. * * @return void */ public function __construct(ZoomMeeting $event) { $this->event = $event; $this->company = $this->event->company; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = []; if ($notifiable->email_notifications) { array_push($via, 'mail'); } return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $url = route('login'); $url = getDomainSpecificUrl($url, $this->company); return parent::build() ->subject(__('zoom::email.meetingReminder.subject').' - '.config('app.name')) ->greeting(__('zoom::email.hello').' '.$notifiable->name.'!') ->line(__('zoom::email.meetingReminder.text')) ->line(__('zoom::modules.zoommeeting.meetingName').': '.$this->event->meeting_name) ->line(__('zoom::app.meetings.time').': '.$this->event->start_date_time->toDayDateTimeString()) ->action(__('zoom::email.loginDashboard'), $url) ->line(__('zoom::email.thankyouNote')); } }
Copyright ©2021 || Defacer Indonesia