aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/report_ops/misc.py10
-rw-r--r--python/report_ops/sma.py4
2 files changed, 11 insertions, 3 deletions
diff --git a/python/report_ops/misc.py b/python/report_ops/misc.py
index 1136693a..6d435efe 100644
--- a/python/report_ops/misc.py
+++ b/python/report_ops/misc.py
@@ -19,11 +19,19 @@ _recipients = {
),
"BAML_FCM": ("footc_margin_csr_amrs@bofa.com",),
"NYOPS": ("nyops@lmcg.com",),
- "HM": (
+}
+
+_sma_recipients = {
+ "ISOSEL": (
"HM-InnocapFunds@bnymellon.com",
"Vera.Dvorski@bnymellon.com",
"Diana.WuChen@bnymellon.com",
),
+ "BOWDST": (
+ "hm-operations@bnymellon.com",
+ "Vera.Dvorski@bnymellon.com",
+ "Diana.WuChen@bnymellon.com",
+ ),
}
_cc_recipients = {
diff --git a/python/report_ops/sma.py b/python/report_ops/sma.py
index 2ce3fa38..e982f069 100644
--- a/python/report_ops/sma.py
+++ b/python/report_ops/sma.py
@@ -2,7 +2,7 @@ import datetime
from dataclasses import dataclass
from serenitas.utils.db import dbconn
from serenitas.utils.exchange import ExchangeMessage
-from .misc import _recipients, _cc_recipients
+from .misc import _sma_recipients, _cc_recipients
from exchangelib import FileAttachment
import pandas as pd
from io import StringIO
@@ -62,7 +62,7 @@ class SMA:
self._em.send_email(
f"{self.fund} {self.date} EOD positions ",
"",
- to_recipients=_recipients["HM"],
+ to_recipients=_sma_recipients[self.fund],
cc_recipients=_cc_recipients[self.fund],
attach=attachments,
)