Skip to content

Commit

Permalink
Update mailbook
Browse files Browse the repository at this point in the history
  • Loading branch information
Xammie committed Feb 14, 2024
1 parent b77d906 commit e326536
Show file tree
Hide file tree
Showing 6 changed files with 154 additions and 124 deletions.
16 changes: 16 additions & 0 deletions app/Mail/AccountCreated.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace App\Mail;

use Illuminate\Mail\Mailable;

class AccountCreated extends Mailable
{
public function build(): self
{
return $this
->markdown('mail.account-created')
->subject('Welcome to our platform!')
->to('[email protected]', 'User');
}
}
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "^7.8.1",
"laravel/framework": "^10.35.0",
"laravel/tinker": "^2.8.2",
"laravel/framework": "^10.44.0",
"laravel/tinker": "^2.9.0",
"sentry/sentry-laravel": "^4.2.0",
"spatie/laravel-markdown": "^2.4.0",
"spatie/laravel-markdown": "^2.4.2",
"spatie/shiki-php": "^1.3",
"xammie/mailbook": "^1.7"
"xammie/mailbook": "^1.8"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.9.2",
"barryvdh/laravel-ide-helper": "^2.13.0",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.8",
"laravel/pint": "^1.13.7",
"laravel/sail": "^1.26.3",
"mockery/mockery": "^1.6.6",
"barryvdh/laravel-debugbar": "^3.10.4",
"barryvdh/laravel-ide-helper": "^2.15.0",
"fakerphp/faker": "^1.23.1",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.13.11",
"laravel/sail": "^1.27.4",
"mockery/mockery": "^1.6.7",
"nunomaduro/collision": "^7.10.0",
"pestphp/pest": "^2.28.0",
"pestphp/pest": "^2.33.6",
"pestphp/pest-plugin-laravel": "^2.2",
"rector/rector": "^1.0",
"spatie/laravel-ignition": "^2.3.1",
"spatie/laravel-ignition": "^2.4.2",
"tomasvotruba/bladestan": "^0.5.0",
"xammie/make-commands": "^0.5.0"
},
Expand Down
Loading

0 comments on commit e326536

Please sign in to comment.