Re: Best Practices for transferring email form data to web server

2015-08-31 Thread pythonista
That worked. I was not aware of the csrf exempt directive. My email form works the way that I want. On Friday, August 28, 2015 at 5:22:46 PM UTC-4, pythonista wrote: > > > > I have created a form that works fine for GETS and POSTS through the > browser. > > I have embedded the form with a GET (

Re: Best Practices for transferring email form data to web server

2015-08-29 Thread Stefano Probst
You can disable the CSRF-protection via csrf_exempt . -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Best Practices for transferring email form data to web server

2015-08-28 Thread pythonista
I have created a form that works fine for GETS and POSTS through the browser. I have embedded the form with a GET (action) in the email, and the data gets transferred to the server as expected. The email POST looks like it needs a csrf token. Is there anyway to generate this and embed it on t