This commit is contained in:
Joao Patricio
2023-05-23 12:32:11 +01:00
parent 13fda50aac
commit aea6bced69
9 changed files with 92 additions and 13 deletions

View File

@@ -29,7 +29,7 @@ class DiscordNotifications extends Component
}
public function sentTestMessage()
{
// @TODO figure out how to do it in runtime
Notification::send(auth()->user(), new TestMessage);
}
public function render()
{

View File

@@ -40,7 +40,7 @@ class EmailNotifications extends Component
}
public function sentTestMessage()
{
Notification::send(auth()->user(), new TestMessage);
}
public function render()
{

53
app/Mail/ExampleMail.php Normal file
View File

@@ -0,0 +1,53 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class ExampleMail extends Mailable
{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*/
public function __construct()
{
//
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: 'Example Mail',
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
return new Content(
view: 'emails.example',
);
}
/**
* Get the attachments for the message.
*
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
*/
public function attachments(): array
{
return [];
}
}

View File

@@ -35,6 +35,24 @@ class TestMessage extends Notification
*/
public function toMail(object $notifiable): MailMessage
{
$smtp = [
"transport" => "smtp",
"host" => "mailpit",
"port" => 1025,
"encryption" => 'tls',
"username" => null,
"password" => null,
"timeout" => null,
"local_domain" => null,
];
config()->set('mail.mailers.smtp', $smtp);
\Illuminate\Support\Facades\Mail::mailer('smtp')
->to('ask@me.com')
->send(new \App\Mail\ExampleMail);
return (new MailMessage)
->line('Welcome to Coolify!')
->action('Go to dashboard', url('/'))
@@ -43,6 +61,7 @@ class TestMessage extends Notification
public function toDiscord(object $notifiable): string
{
ray('1111');
return 'Welcome to Coolify! We need your attention for disk usage. [Go to dashboard]('.url('/').')';
}