diff options
| -rw-r--r-- | python/position_file_bowdst.py | 6 | ||||
| -rw-r--r-- | python/report_ops/misc.py | 10 |
2 files changed, 13 insertions, 3 deletions
diff --git a/python/position_file_bowdst.py b/python/position_file_bowdst.py index f32ba11d..00b30e5c 100644 --- a/python/position_file_bowdst.py +++ b/python/position_file_bowdst.py @@ -2,7 +2,7 @@ from report_ops.sma import build_position_file import argparse from serenitas.utils.remote import Client from serenitas.utils.exchange import ExchangeMessage, FileAttachment -from report_ops.misc import _recipients, _cc_recipients +from report_ops.misc import _monthend_nav_recipients, _cc_recipients import datetime from serenitas.analytics.dates import prev_business_day @@ -15,7 +15,7 @@ asset_splits = { "irs", "cdx", ), - "BOND": ("bond"), + "BOND": ("bond",), } @@ -40,7 +40,7 @@ def main(cob, fund, upload): em.send_email( subject=f"Position_files for Bowdoin Street as of {cob}", body=f"Please see monthend positions for Bowdoin Street as of {cob}. They have been uploaded to the SFTP as well.", - to_recipients=_recipients[fund], + to_recipients=_monthend_nav_recipients[fund], cc_recipients=_cc_recipients[fund], reply_to=_cc_recipients[fund], attach=attachments, diff --git a/python/report_ops/misc.py b/python/report_ops/misc.py index 3492baf1..684ea6dd 100644 --- a/python/report_ops/misc.py +++ b/python/report_ops/misc.py @@ -43,6 +43,16 @@ _sma_recipients = { "BRINKER": ("CSG.Team.Armata@bbh.com",), } +_monthend_nav_recipients = { + "BOWDST": _recipients["BOWDST"] + + ( + "Hedgemark.FA@sscinc.com", + "HM-acctgprim@bnymellon.com", + "catherine.porter@bnymellon.com", + "Meghana.shroff@bnymellon.com", + ), +} + _settlement_recipients = { "BOWDST": _sma_recipients["BOWDST"], "SERCGMAST": ( |
