justdjango / django-ecommerce

An e-commerce website built with Django
GNU General Public License v3.0
2.07k stars 1.61k forks source link

Signup page did not work properly #23

Closed alexsonphoenix closed 4 years ago

alexsonphoenix commented 4 years ago

image

alexsonphoenix commented 4 years ago

hello, please have a look at this. Thank youuu

mujtabamahmood commented 4 years ago

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

alexsonphoenix commented 4 years ago

thank you so much, I am just wondering if the codes are still usable for django 3.0?

mujtabamahmood commented 4 years ago

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 .

sanketnetalkar commented 4 years ago

can you suggest any free email providers? and guide on how to do it.

mujtabamahmood commented 4 years ago

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 .