mirror of https://github.com/zulip/zulip.git
18 lines
397 B
Python
18 lines
397 B
Python
import mandrill
|
|
from django.conf import settings
|
|
|
|
MAIL_CLIENT = None
|
|
|
|
from typing import Optional
|
|
|
|
def get_mandrill_client():
|
|
# type: () -> Optional[mandrill.Mandrill]
|
|
if settings.MANDRILL_API_KEY is None or settings.DEVELOPMENT:
|
|
return None
|
|
|
|
global MAIL_CLIENT
|
|
if not MAIL_CLIENT:
|
|
MAIL_CLIENT = mandrill.Mandrill(settings.MANDRILL_API_KEY)
|
|
|
|
return MAIL_CLIENT
|