cd taiga-back
workon taiga
./manage.py shell
from django.core import mail
mail.send_mail("Subject", "Body", "FR...@mail.com", ["T...@mail.com"], fail_silently=False)
Nobody knows the answer? Where should I look? It took me several hours to choose from the available project management tools, and it took 2 hours to install it. I would hate to delete the whole thing just because it cannot send out notification emails.
--
Please help us keep the Taiga.io Community open and inclusive, follow our Code of Conduct:
https://github.com/taigaio/code-of-conduct/blob/master/CODE_OF_CONDUCT.md
---
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+unsubscribe@googlegroups.com.
To post to this group, send email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/ca37088a-25cf-472c-9f8c-cdc616173fb9%40googlegroups.com.
|
David Barragán Merino
Engineer www.kaleidos.net/FFF8E7 |
Try this in the taiga machine:cd taiga-back
workon taiga
./manage.py shell
from django.core import mail
mail.send_mail("Subject", "Body", "FR...@mail.com", ["T...@mail.com"], fail_silently=False)
With this commands you can test the connection between Taiga and your smtp server. I think Taiga can connect with your smtp server, maybe the credentials or maybe because yoyu have to enable TLS and set to True.
--
Please help us keep the Taiga.io Community open and inclusive, follow our Code of Conduct:
https://github.com/taigaio/code-of-conduct/blob/master/CODE_OF_CONDUCT.md
---
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+unsubscribe@googlegroups.com.
To post to this group, send email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/1053eca7-517f-48a9-8b1a-881734fa94d1%40googlegroups.com.
The traceback say that you've pressed ctrl-c during the server is trying to connect with the smtp server. So it seems the problem is that the server can't communicate with the smtp server.
--
Please help us keep the Taiga.io Community open and inclusive, follow our Code of Conduct:
https://github.com/taigaio/code-of-conduct/blob/master/CODE_OF_CONDUCT.md
---
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+unsubscribe@googlegroups.com.
To post to this group, send email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/cf6deb0a-bab8-4855-9bbf-f70c0fc9bbe5%40googlegroups.com.
Thank you very much László and sorry for thew inconvenience