First time here? Check out the FAQ!
0

How can I get Askbot emails to print to the console?

I'm running Askbot as an app on a larger project in a development environment. The EMAIL_BACKEND setting in this environment is the console backend. However, none of Askbot's email notifications get printed to the console; instead, they seem to disappear into the ether. Is there any way I can get these messages to print?

geekofalltrades's avatar
13
geekofalltrades
asked 2014-11-06 16:53:05 -0500, updated 2014-11-06 16:53:43 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

Maybe you have > 1 EMAIL_BACKEND in your settings.py or you are looking into a wrong file? This works for me:

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
Evgeny's avatar
13.2k
Evgeny
answered 2014-11-06 18:04:45 -0500
edit flag offensive 0 remove flag delete link

Comments

Probably something in the project setup, then - I'll look into it.

geekofalltrades's avatar geekofalltrades (2014-11-10 13:28:41 -0500) edit
add a comment see more comments