Файловый менеджер - Редактировать - /home/clickysoft/public_html/standup.clickysoft.net/app/Notifications/TeamMemberInvite.php
Назад
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; class TeamMemberInvite extends Notification { use Queueable; protected $url; public function __construct($url) { $this->url = $url; } public function via($notifiable) { return ['mail']; } public function toMail($notifiable) { return $this->getMessage(); } public function getMessage() { return (new MailMessage) ->subject(config('app.name') . ': invitation ') ->greeting('Hi,') ->line('We invite you to join our team!') ->line('Please click the link bellow.') ->action('Register', $this->url) ->line('Thank you') ->line(config('app.name') . ' Team') ->salutation(' '); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка