diff options
author | David Baker <dave@matrix.org> | 2016-06-02 11:44:15 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-06-02 11:44:15 +0100 |
commit | a15ad608496fd29fb8bf289152c23adca822beca (patch) | |
tree | 6212e5db2f0c45a3c9bca6e15a882d4366f4cfc6 /synapse/push/emailpusher.py | |
parent | WIP on unsubscribing email notifs without logging in (diff) | |
download | synapse-a15ad608496fd29fb8bf289152c23adca822beca.tar.xz |
Email unsubscribing that may in theory, work
Were it not for that fact that you can't use the base handler in the pusher because it pulls in the world. Comitting while I fix that on a different branch.
Diffstat (limited to 'synapse/push/emailpusher.py')
-rw-r--r-- | synapse/push/emailpusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/emailpusher.py b/synapse/push/emailpusher.py index a72cba8306..46d7c0434b 100644 --- a/synapse/push/emailpusher.py +++ b/synapse/push/emailpusher.py @@ -273,5 +273,5 @@ class EmailPusher(object): logger.info("Sending notif email for user %r", self.user_id) yield self.mailer.send_notification_mail( - self.user_id, self.email, push_actions, reason + self.app_id, self.user_id, self.email, push_actions, reason ) |