On Aug 28, 7:10 am, Shadow <shadow.fusion.m...@gmail.com> wrote:
> Hi,
>
> Is it possible to execute code after sending the actual http response?
>
> For my website, users can optionally give an email address, and if
> they do, the site sends a confirmation email. But I was thinking it's
> more logical to spend time sending the email after the signup
> confirmation page is sent to the user. Since sending the email doesn't
> affect the http reponse at all?
>
> Is this possible?
>
> cheers

Not directly - once you've returned from your view, that's it.

One possibility though is not to do the email sending within the view.
Instead, the view simply sets an attribute in a table somewhere to say
that an email needs to be sent to a certain user. Then you have a cron
job that runs regularly, extracts the users with the flag set, and
sends the email.

You could perhaps achieve the same thing using message queues - have
your view send a message to the queue, and a separate listener which
receives the message and sends the mail.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to