> Documentation index: [Saleor](/llms.txt) · [This section](/developer/llms.txt)
> Source: https://docs.saleor.io/developer/app-store/legacy-plugins/admin-emails

`AdminEmails` plugin handles email communication with staff (Dashboard users).

Internally, the plugin is similar to [`UserEmails`](/developer/app-store/legacy-plugins/user-emails.md), with a few notable differences:

-   Available events
-   Self-hosted: SMTP configuration can be set up as [environment variables](/setup/configuration.md)
-   Saleor Cloud: Sending emails is handled by Cloud's SMTP server by default.

# Configuration

If the email configuration of the plugin on the dashboard side will be empty, the plugin will try to use variables defined in settings.py file:

-   `settings.EMAIL_HOST`
-   `settings.EMAIL_PORT`
-   `settings.EMAIL_HOST_USER`
-   `settings.EMAIL_HOST_PASSWORD`
-   `settings.DEFAULT_FROM_EMAIL`
-   `settings.EMAIL_USE_TLS`
-   `settings.EMAIL_USE_SSL`

# Available events

-   `account_set_staff_password`
-   `account_staff_reset_password`
-   `csv_export_success`
-   `csv_export_failed`
-   `staff_order_confirmation`
