Re: asynchronous python call

2009-04-08 Thread Lawrence D'Oliveiro
In message , Aahz wrote: > In article > <637028a0-58b9-4912-896d-2b17e1341...@q16g2000yqg.googlegroups.com>, > joeygartin wrote: >> >> So I was hoping there was a way to spin off the process and >>redirect the user to the page while the emails are being formed and >>sent vs. making the page hang

Re: asynchronous python call

2009-04-08 Thread Aahz
In article <637028a0-58b9-4912-896d-2b17e1341...@q16g2000yqg.googlegroups.com>, joeygartin wrote: > >I am working with Django and I have to send off a number of emails >after a person has filled out a form. What I want is to make a call >that goes off to form and send the emails and redirect the

Re: asynchronous python call

2009-04-08 Thread Tino Wildenhain
Hi, joeygartin wrote: Complete newbie, so forgive my improper use of Python terminology. I am working with Django and I have to send off a number of emails after a person has filled out a form. What I want is to make a call that goes off to form and send the emails and redirect the user to ano

asynchronous python call

2009-04-08 Thread joeygartin
Complete newbie, so forgive my improper use of Python terminology. I am working with Django and I have to send off a number of emails after a person has filled out a form. What I want is to make a call that goes off to form and send the emails and redirect the user to another view. I have this w