Modules collectives helpers#

Module collectives.email_templates#

Templates for mails

collectives.email_templates.send_cancelled_event_notification(name, event)#

Send a notification to user whom event has been cancelled

Parameters
  • name (string) – User name who cancelled the event.

  • event (collectives.modes.event.Event) – Event that has been cancelled.

collectives.email_templates.send_confirmation_email(email, name, token)#

Send an email to user to confirm his account activation

Parameters
collectives.email_templates.send_late_unregistration_notification(event, user)#

Send a notification to the user who recently unregistered lately from an event.

Parameters
  • event (collectives.modes.event.Event) – The event from which the user recently unregistered.

  • user (collectives.models.user.User) – The user who recently unregistered.

collectives.email_templates.send_new_event_notification(event)#

Send a notification to activity supervisor when a new event is created

Parameters

event (collectives.modes.event.Event) – The new created event.

collectives.email_templates.send_reject_subscription_notification(rejector_name: str, event: collectives.models.event.Event, rejected_user_email: str, reason: str)#

Send a notification to user whom registration has been rejected

Parameters
  • rejector_name – User name who rejects the subscription.

  • event – Event the registraton is rejected on.

  • rejected_user_email – User email for who registraton is rejected.

  • reason – Reason for the rejection

collectives.email_templates.send_unjustified_absence_notification(event, user)#

Send a notification to the user who missed an event and got assigned an ‘UnjustifiedAbsentee’ registration status by the event organizer.

Parameters
  • event (collectives.modes.event.Event) – The event that the user missed according to the event organizer.

  • user (collectives.models.user.User) – The user who missed the event.

collectives.email_templates.send_unregister_notification(event: collectives.models.event.Event, user: collectives.models.user.User, reason: str)#

Send a notification to leaders when a user unregisters from an event

Parameters
  • event – Event on which user unregisters.

  • user – User who unregisters.

  • reason – Use-provided reason for unregistering

collectives.email_templates.send_update_waiting_list_notification(registration: collectives.models.registration.Registration, deleted_registrations: List[collectives.models.registration.Registration])#

Send a notification to user whom registration has been activated from waiting list

Parameters

registration – Activated registration