Re: Email Django app.

2019-05-16 Thread wembo mulumba
Make Good use of SMTP and POP3 or IMAP, I 100% believe with those 3 technologies you can achieve it. Just getting started with django so i can't help much with the structure or coding. And yes it can be done locally like any other frameworks On Saturday, 11 May 2019 00:18:01 UTC+2, Marvelous I

Re: Email Django app.

2019-05-15 Thread Marvelous Ikechi
Thank you Kumar. I used that. On 11:36AM, Mon, May 13, 2019 Devender Kumar wrote: > Till now I only know about one thing is that is sending emails not about > how you will be going to read them but I have suggestion for this also. For > sending email you need to configure smtp/email in your sett

Re: Email Django app.

2019-05-13 Thread Devender Kumar
Till now I only know about one thing is that is sending emails not about how you will be going to read them but I have suggestion for this also. For sending email you need to configure smtp/email in your settings file like so EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_U

Re: Email Django app.

2019-05-13 Thread Marvelous Ikechi
Sorry for my late response. How can I go about it? On 4:53AM, Sat, May 11, 2019 salimon jamiu olashile < tunedae1shi...@gmail.com> wrote: > The functionality should work on localhost. > > On Fri, 10 May 2019 at 11:17 PM, Marvelous Ikechi > wrote: > >> Hello guys, >> >> I'm creating an third part

Re: Email Django app.

2019-05-10 Thread carlos
maybe you try functionality used EMAIL_BACKEND = ( "django.core.mail.backends.console.EmailBackend" ) On Fri, May 10, 2019 at 9:53 PM salimon jamiu olashile < tunedae1shi...@gmail.com> wrote: > The functionality should work on localhost. > > On Fri, 10 May 2019 at 11:17 PM, Marvelo

Re: Email Django app.

2019-05-10 Thread salimon jamiu olashile
The functionality should work on localhost. On Fri, 10 May 2019 at 11:17 PM, Marvelous Ikechi wrote: > Hello guys, > > I'm creating an third party app that can send and read users emails using > Django. How possible would it be to connect to the internet from my local > host, to send and receive

Email Django app.

2019-05-10 Thread Marvelous Ikechi
Hello guys, I'm creating an third party app that can send and read users emails using Django. How possible would it be to connect to the internet from my local host, to send and receive these emails. Or do I need to host the site first before these functionalities can come alive? -- You received