Last active
April 2, 2023 14:05
-
-
Save mitchtabian/6b6a650b4b809ca2f40295e5fe7a40e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[settings] | |
[email protected] | |
EMAIL_HOST_PASSWORD=your_app_password_here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' | |
EMAIL_HOST = 'smtp.gmail.com' | |
EMAIL_HOST_USER = '[email protected]' | |
EMAIL_HOST_PASSWORD = 'your_app_password_here' | |
EMAIL_PORT = 587 | |
EMAIL_USE_TLS = True | |
DEFAULT_FROM_EMAIL = 'CodingWithMitch Team <[email protected]>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
C'est trop cool