Closed alexsonphoenix closed 4 years ago
hello, please have a look at this. Thank youuu
this is because of the email backend of django. When a use signs up django admin sends an email and right now you don't have it. I would suggest find any free email provider and put this text in the /settings/development.py file in the main app.
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_USE_TLS = True EMAIL_HOST = 'smtp.zoho.com' EMAIL_HOST_USER = 'mail@yourdomain.com' EMAIL_HOST_PASSWORD = 'yourpassword' DEFAULT_FROM_EMAIL = "mail@yourdomain.com" EMAIL_PORT = 587
the emails must work otherwise django is going to complain
thank you so much, I am just wondering if the codes are still usable for django 3.0?
Not really sure. This was for django 2.2.2
On Sun, Mar 29, 2020, 9:24 AM alexsonphoenix notifications@github.com wrote:
thank you so much, I am just wondering if the codes are still usable for django 3.0?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/justdjango/django-ecommerce/issues/23#issuecomment-605635178, or unsubscribe https://github.com/notifications/unsubscribe-auth/AG6NZEFEJ6QRJ7IQFRPLKODRJ5D2PANCNFSM4LVO3G6Q .
can you suggest any free email providers? and guide on how to do it.
I use zoho. For few users they are good.
On Thu, Jun 4, 2020, 9:03 AM sanketnetalkar notifications@github.com wrote:
can you suggest any free email providers? and guide on how to do it.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/justdjango/django-ecommerce/issues/23#issuecomment-638833480, or unsubscribe https://github.com/notifications/unsubscribe-auth/AG6NZEBAQPOHQMQUNOUNRELRU6LTHANCNFSM4LVO3G6Q .