From 6ff9d3a6a76b4c8a32fc5ca43031e15842b6fffe Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Wed, 18 Mar 2026 09:32:36 +0100 Subject: [PATCH] remove test email --- app/Mail/TestMail.php | 57 ---------------------------- resources/views/mails/test.blade.php | 12 ------ 2 files changed, 69 deletions(-) delete mode 100644 app/Mail/TestMail.php delete mode 100644 resources/views/mails/test.blade.php diff --git a/app/Mail/TestMail.php b/app/Mail/TestMail.php deleted file mode 100644 index 036d55f..0000000 --- a/app/Mail/TestMail.php +++ /dev/null @@ -1,57 +0,0 @@ -data = $data; - } - - /** - * Get the message envelope. - */ - public function envelope(): Envelope - { - return new Envelope( - subject: 'Test Mail', - ); - } - - /** - * Get the message content definition. - */ - public function content(): Content - { - return new Content( - view: 'mails.test', - with: [ - 'name' => $this->data['name'], - ] - ); - } - - /** - * Get the attachments for the message. - * - * @return array - */ - public function attachments(): array - { - return []; - } -} diff --git a/resources/views/mails/test.blade.php b/resources/views/mails/test.blade.php deleted file mode 100644 index 62d0eb1..0000000 --- a/resources/views/mails/test.blade.php +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - Test Email - - -

Hello {{ $name }}

-

This is a test email sent from your application using MailHog!

- -