Signals

List of signals sent by the Django-inviteme app.

Confirmation will be requested

inviteme.signals.confirmation_will_be_requested

Sent just before a confirmation message is requested.

A message is sent to the user right after the contact form is been posted and validated to verify the user’s email address. This signal may be used to ban email addresses or check message content. If any receiver returns False the process is discarded and the user receives a discarded message.

Confirmation has been requested

inviteme.signals.confirmation_requested

Sent just after a confirmation message is requested.

A message is sent to the user right after the contact form is been posted and validated to verify the user’s email address. This signal may be uses to trace contact messages posted but never confirmed.

Confirmation has been received

inviteme.signals.confirmation_received

Sent just after a confirmation has been received.

A confirmation is received when the user clicks on the link provided in the confirmation message sent by email. This signal may be used to validate that the submit date stored in the URL is no older than a certain time. If any receiver returns False the process is discarded and the user receives a discarded message.

See a simple example of a receiver for this signal: Signals and receivers, in the Tutorial.

Table Of Contents

Previous topic

Tutorial

Next topic

Templatetags

This Page