Re: E-mail sending... but.. not sending?

2019-07-09 Thread Jani Tiainen
Hi. Looks like your backend isn't right if you see message in the console. Also if using gmail you have allowed insecure apps? ti 9. heinäk. 2019 klo 17.47 grwhumphries kirjoitti: > I've got a bit of a mystery. I've got a Django Wagtail project with > Spirit as an added app. I'm trying to

E-mail sending... but.. not sending?

2019-07-09 Thread grwhumphries
I've got a bit of a mystery. I've got a Django Wagtail project with Spirit as an added app. I'm trying to get the e-mail system working... I've included the following in settings/base.py EMAIL_NAME = 'myem...@gmail.com' EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'

Re: mail sending

2018-11-22 Thread Joel
django-kronos is probably the easiest to do this. As mentioned, you could create a management command to check a database or file for the time when you want to run this, with any other data, then you'd set an interval at which you want to check if mails need be sent, and then execute your mail

Re: mail sending

2018-11-22 Thread Jani Tiainen
Hi. Essentially you need to record the time you want your mail to be sent and then you need some kind of background worker to check (periodically) if there are any mails to be sent. Celery is one tool that can do that. I personally use simple cron job that uses django management command to

Re: mail sending

2018-11-22 Thread Hari
Please check below link.It may help you..Basically you need to set up celery. https://stackoverflow.com/questions/9982486/django-sending-email-x-days-later On Thu, Nov 22, 2018, 12:23 PM Tushar Nadkar wrote: > when a button is clicked , i want to send specific mail after 3 days ? how > can i

Re: mail sending

2018-11-21 Thread mazz ahmed
https://stackoverflow.com/questions/28992466/send-weekly-email-notifications-to-users-regarding-any-changes-in-data On Thu, Nov 22, 2018 at 12:06 PM mazz ahmed wrote: > celery is Django package check out that. > > On Thu, Nov 22, 2018 at 11:53 AM Tushar Nadkar > wrote: > >> when a button is

Re: mail sending

2018-11-21 Thread mazz ahmed
celery is Django package check out that. On Thu, Nov 22, 2018 at 11:53 AM Tushar Nadkar wrote: > when a button is clicked , i want to send specific mail after 3 days ? how > can i do that in django > > -- > You received this message because you are subscribed to the Google Groups > "Django

mail sending

2018-11-21 Thread Tushar Nadkar
when a button is clicked , i want to send specific mail after 3 days ? how can i do that in django -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to