Add admin message scaffolding

pull/2036/head
Daniel Supernault 2020-02-18 00:33:13 -07:00
rodzic 9a0c5bc8ae
commit b944dc3a5f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
2 zmienionych plików z 57 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,37 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class AdminMessage extends Mailable
{
use Queueable, SerializesModels;
protected $msg;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct($msg)
{
$this->msg = $msg;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
$admins = config('pixelfed.domain.app') . ' admins';
return $this->markdown('emails.notification.admin_message')
->with(['msg' => $this->msg])
->subject('Message from ' . $admins);
}
}

Wyświetl plik

@ -0,0 +1,20 @@
@component('mail::message')
# Message from {{ config('pixelfed.domain.app') }}:
@component('mail::panel')
{{$msg}}
@endcomponent
<br>
Regards,<br>
{{ config('pixelfed.domain.app') }}
@component('mail::subcopy')
Please do not reply to this email, this address is not monitored.
@endcomponent
@endcomponent