django email backend console

Solutions on MaxInterview for django email backend console by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "django email backend console"
Bilal
03 Apr 2018
1EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
2
3'''Console backend¶
4Instead 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.
5
6To specify this backend, put the following in your settings:'''