Files
crewli/api/resources/views/emails/registration-approved.blade.php
bert.hausmans 8435e74fd3 feat(api): registration auth, account creation, check-email & email notifications
- Add POST /public/check-email endpoint with rate limiting (10/min)
- Create user accounts during volunteer registration (new or returning)
- Returning volunteers authenticate with existing password
- Add password validation to VolunteerRegistrationRequest
- Normalize emails to lowercase throughout registration flow
- Handle race condition on duplicate accounts gracefully
- Create RegistrationConfirmationMail, RegistrationApprovedMail, RegistrationRejectedMail
- Wire approval/rejection emails into PersonController
- Add POST persons/{person}/reject endpoint
- Trigger TagSyncService on registration and approval
- Add CheckEmailTest, PersonApprovalEmailTest, extend VolunteerRegistrationTest

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-13 00:37:04 +02:00

15 lines
337 B
PHP

<x-mail::message>
# Goed nieuws, {{ $personName }}!
Goed nieuws! Je bent goedgekeurd als vrijwilliger voor **{{ $eventName }}**.
Log in op het portaal om je shifts te bekijken en te claimen.
<x-mail::button :url="$portalUrl">
Naar het portaal
</x-mail::button>
Met vriendelijke groet,<br>
{{ config('app.name') }}
</x-mail::message>