mirror of https://github.com/pixelfed/pixelfed
Add admin message scaffolding
parent
9a0c5bc8ae
commit
b944dc3a5f
@ -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);
|
||||
}
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue