F
Filament3w ago
Aman

How can I send an email after creating a user in the Filament admin panel?

How can I automatically send a verification email when a user is created in Filament? How do I trigger an email notification when a new user is added via Filament? How can I send a welcome email after user creation in Filament? How can I implement email verification in Filament when an admin creates a user?
No description
Solution:
I have done with `protected function handleRecordCreation(array $data): Model { Mail::to($user->email)->send()); ...
Jump to solution
3 Replies
Antea
Antea3w ago
I think you can get really far just by using an observer, or static::created() in your user model booted() and making a welcome mailable, not really filament specific If you need specific data from the form to use for the mail you can edit the handleRecordCreation iirc method in CreateUser page class of your UserResource
Solution
Aman
Aman2w ago
I have done with protected function handleRecordCreation(array $data): Model { Mail::to($user->email)->send()); }
toeknee
toeknee2w ago
You can use ->after() too.

Did you find this page helpful?