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?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
geekofalltrades's avatar
13
geekofalltrades
asked 10 years ago, updated 10 years ago

Comments

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'

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 10 years ago
link

Comments

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

geekofalltrades's avatar geekofalltrades (10 years ago)
see more comments