aboutsummaryrefslogtreecommitdiffstats
path: root/python/citco_ops/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/citco_ops/utils.py')
-rw-r--r--python/citco_ops/utils.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/citco_ops/utils.py b/python/citco_ops/utils.py
index f27cae93..af5c69fe 100644
--- a/python/citco_ops/utils.py
+++ b/python/citco_ops/utils.py
@@ -206,6 +206,7 @@ _recipients = {
"SERENITAS.ops@sscinc.com",
),
"BAML_FCM": ("footc_margin_csr_amrs@bofa.com",),
+ "NYOPS": ("nyops@lmcg.com",),
}
@@ -313,3 +314,16 @@ class BamlFcmNotify:
to_recipients=_recipients["BAML_FCM"],
cc_recipients=("nyops@lmcg.com",),
)
+
+
+@dataclass
+class EmailOps:
+ _em = ExchangeMessage()
+
+ @classmethod
+ def email_boston(cls, date):
+ cls._em.send_email(
+ f"Missing Cash Balance for Scotia {date}",
+ f"Please provide cash balance for Scotia for {date} in Blotter.\n\nThanks!",
+ to_recipients=_recipients["NYOPS"],
+ )