Files
notifications-api/app/clients/email/__init__.py

21 lines
434 B
Python
Raw Normal View History

from app.clients import ClientException, Client
class EmailClientException(ClientException):
'''
Base Exception for EmailClients
'''
pass
class EmailClient(Client):
'''
Base Email client for sending emails.
'''
def send_email(self, *args, **kwargs):
raise NotImplementedError('TODO Need to implement.')
def get_name(self):
raise NotImplementedError('TODO Need to implement.')