mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 08:21:13 -05:00
18 lines
343 B
Python
18 lines
343 B
Python
|
|
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 NotImplemented('TODO Need to implement.')
|