Re: Fwd: How to send emails using django rest framework from front end angular 7

2019-08-29 Thread Kasper Laudrup
Hi Sai On 29/08/2019 12.26, Sai Aravind wrote: Dear members, Can anyone help me send emails from django backend with angular 7 frontend , it's very urgent please let me if any one has done it before It doesn't matter which frontend you use, Django is perfectly able to send emails:

Fwd: How to send emails using django rest framework from front end angular 7

2019-08-29 Thread Sai Aravind
Dear members, Can anyone help me send emails from django backend with angular 7 frontend , it's very urgent please let me if any one has done it before Regards P. Sai Aravind -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: How to send emails?

2011-03-30 Thread Micah Carrick
You can setup gmail in your settings.py DEFAULT_FROM_EMAIL = 'your-email@your-domain' EMAIL_USE_TLS = True EMAIL_HOST = 'smtp.gmail.com' EMAIL_PORT = 587 EMAIL_HOST_USER = 'your-gmail-usern...@gmail.com' EMAIL_HOST_PASSWORD = 'your-gmail-password' And you can use the email_user() method of the

Re: How to send emails?

2011-03-30 Thread Ryan Osborn
Hi, django-registration can take care of this for you: https://bitbucket.org/ubernostrum/django-registration/ Ryan -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To

How to send emails?

2011-03-30 Thread LIU Liang
Hello, I want to realize the verification of email when sign up. But I don't know how to send a email. for example with a account of gmail. I have tried the method following, but there's errors. Could anybody help? I create a django project, and add email configuration in settings.py. then

Re: How to send emails when after an event happened?

2008-10-25 Thread TiNo
> > I had similar issues with my project. I am doing an online auction > website which allows user to bid for products and so forth. One of the > function is to send email to the highest bidder when the product has > met its deadlines. Right now I am using "if statement" in views.py to > compare

Re: How to send emails when after an event happened?

2008-10-25 Thread Cassie
I had similar issues with my project. I am doing an online auction website which allows user to bid for products and so forth. One of the function is to send email to the highest bidder when the product has met its deadlines. Right now I am using "if statement" in views.py to compare end time

Re: How to send emails when after an event happened?

2008-10-20 Thread Steve Holden
A better starting point might be http://docs.djangoproject.com/en/dev/topics/email/ which the OP will already have seen if he followed Karen's advice. regards Steve megrez80 wrote: > Start here: http://www.python.org/doc/2.5.2/lib/module-smtplib.html . > > Ken > > > On Oct 19, 2:04 am,

Re: How to send emails when after an event happened?

2008-10-20 Thread megrez80
Start here: http://www.python.org/doc/2.5.2/lib/module-smtplib.html . Ken On Oct 19, 2:04 am, Net_Boy <[EMAIL PROTECTED]> wrote: > Hi, > >    I am doing a new project and  (doing a function that checks  for a > specific event, if it happened then the system should send email to > the user?

Re: How to send emails when after an event happened?

2008-10-19 Thread reyjexter
I think you need to be more specific with what you want to do. On Oct 19, 2:04 pm, Net_Boy <[EMAIL PROTECTED]> wrote: > Hi, > >    I am doing a new project and  (doing a function that checks  for a > specific event, if it happened then the system should send email to > the user? so how can I do

Re: How to send emails when after an event happened?

2008-10-19 Thread Karen Tracey
On Sun, Oct 19, 2008 at 2:04 AM, Net_Boy <[EMAIL PROTECTED]> wrote: > > Hi, > > I am doing a new project and (doing a function that checks for a > specific event, if it happened then the system should send email to > the user? so how can I do that? > You might try searching the docs for

How to send emails when after an event happened?

2008-10-19 Thread Net_Boy
Hi, I am doing a new project and (doing a function that checks for a specific event, if it happened then the system should send email to the user? so how can I do that? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google