> ## Documentation Index
> Fetch the complete documentation index at: https://docs.larafast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Emails

> Mailgun, Postmark, Amazon SES, Resend, and more. 

Emails are sent using Laravel's built-in Mail functionality, which supports various mailers including SMTP, Mailgun, Postmark, Amazon SES, Resend, and more. To get started, configure your mail settings in the `.env` file.

Larafast uses [Resend](https://resend.com) as our default email provider.

## Configuration

```env theme={null}
MAIL_MAILER=resend
MAIL_FROM_ADDRESS="sergey@phlaunches.com"
MAIL_FROM_NAME="${APP_NAME}"
RESEND_API_KEY=re_nKMWy5on_JS3lkjnkjFPhuCQgYN7rJgtVmac9aS
```

## Notifications

Larafast comes with 6 transactional notifications:

* Magic link notifications
* Password reset notifications
* Email verification notifications
* Order Created notifications
* Subscription Created notifications
* Welcome notifications

You can find these in `resources/views/emails`.

For more information on how to customize these notifications, see the [Laravel Notifications documentation](https://laravel.com/docs/11.x/notifications) and [Laravel Mail documentation](https://laravel.com/docs/11.x/mail).
