Re: How can I send an outlook mail from angular using django

2019-06-13 Thread Andréas Kühne
Hi, You cannot send outlook email via django at all. Django runs on a server that hasn't access to the clients email application. However - what you can do is use the standard a tag with a "mailto:"; link. This should open the clients email program (whatever that is) and send an email from there.

Re: How can I send an outlook mail from angular using django

2019-06-12 Thread Taylor Hughes-Scott
I'm not so sure about sending outlook email through django. However i do know django has a basic email sending built in have you had a look at that? https://docs.djangoproject.com/en/2.2/topics/email/ On Thu., 13 Jun. 2019, 10:41 am Sai Aravind, wrote: > How can I send an outlook mail from angul