For the complete documentation index, see llms.txt. This page is also available as Markdown.

Email Sending Configuration

Configuring email sending settings in the environment (.env) file is essential for enabling email functionality within your application.

Locate and Open the .env File:

Navigate to the directory where the .env file is located and open it for editing. You can use any text editor of your choice. For example:

cd jet-onpremise
nano .env

Simple Email Configuration

Modify the following parameters with your email server data:

EMAIL_FROM=email@example.com
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
EMAIL_HOST=email_host
EMAIL_PORT=email_port
EMAIL_USER=email_username
EMAIL_PASSWORD=email_password
EMAIL_TLS=1
EMAIL_ADMIN=admin_email@example.com

Advanced Email Configuration (Amazon SES)

Alternatively, if you're using Amazon SES for email sending, Add the following parameters with your Amazon SES credentials:

Last updated

Was this helpful?