Django EMAIL BACKEND Console

[Solved] Django EMAIL BACKEND Console | Python - Code Explorer | yomemimo.com
Question : django EMAIL_BACKEND console

Answered by : younis-rahman

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
'''Console backend¶
Instead of sending out real emails the console backend just writes the emails that would be sent to the standard output. By default, the console backend writes to stdout. You can use a different stream-like object by providing the stream keyword argument when constructing the connection.
To specify this backend, put the following in your settings:'''

Source : https://docs.djangoproject.com/en/3.2/topics/email/ | Last Update : Thu, 29 Apr 21

Answers related to django EMAIL BACKEND console

Code Explorer Popular Question For Python