コード例 #1
0
ファイル: elements.py プロジェクト: proteanhq/protean
 def notify(self, event):
     email = WelcomeEmail(to=event["email"], data=event)
     current_domain.send_email(email)
コード例 #2
0
ファイル: elements.py プロジェクト: nadirhamid/protean
 def notify(self, domain_event):
     email = WelcomeEmail(to=domain_event.person.email,
                          data=domain_event.person.to_dict())
     current_domain.send_email(email)
コード例 #3
0
ファイル: elements.py プロジェクト: nadirhamid/protean
 def notify(self, domain_event):
     email = WelcomeEmail(to=domain_event["person"]["email"],
                          data=domain_event["person"])
     current_domain.send_email(email)
コード例 #4
0
ファイル: elements.py プロジェクト: proteanhq/protean
 def notify(self, event):
     email = WelcomeEmail(to=event.email, data=event.to_dict())
     current_domain.send_email(email)
コード例 #5
0
ファイル: elements.py プロジェクト: advishnuprasad/protean
 def notify(self, domain_event):
     email = WelcomeEmail(to=domain_event['person']['email'], data=domain_event['person'])
     current_domain.send_email(email)