virtualMachineweblate

Configure SMTP for outbound emails

Follow these steps:

  • Configure email settings by editing the /opt/bitnami/apps/django/lib/python2.7/site-packages/Django-1.7.8-py2.7.egg/django/conf/global_settings.py file. Here’s an example using Gmail. Replace USERNAME and PASSWORD with your Gmail account username and password respectively.

      EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
      EMAIL_HOST = 'smtp.gmail.com'
      EMAIL_PORT = 587
      EMAIL_HOST_USER = 'USERNAME@gmail.com'
      EMAIL_HOST_PASSWORD = 'PASSWORD'
      EMAIL_USE_TLS = True
    
  • Restart the Apache server for the changes to take effect.

      $ sudo /opt/bitnami/ctlscript.sh restart apache
    

To configure the application to use other third-party SMTP services for outgoing email, such as SendGrid, refer to the FAQ.

NOTE: If you are using Gmail as the outbound email server, your application’s attempts to send outgoing emails may be blocked by Gmail if it considers the authentication attempts to be suspicious. When this happens, you will receive a Gmail security alert at the corresponding Gmail address. To proceed, you will need to manually confirm the validity of the authentication attempt before Gmail will permit the application to send outbound emails. For more information on this and other Gmail issues related to outbound email from your application, refer to our Gmail SMTP troubleshooting page.

Last modification December 21, 2022