summaryrefslogtreecommitdiffstats
path: root/accounts/backend/mail/__init__.py
blob: c22b03789328a7fe99391835a394df3e91083216 (plain)
1
2
3
4
5
6
7
8
9
# -*- coding: utf-8 -*-

class Backend(object):

    def __init__(self, app):
        self.app = app

    def send(self, recipient, subject, body, sender=None):
        raise NotImplementedError()