diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/report_ops/misc.py | 5 | ||||
| -rw-r--r-- | python/report_ops/utils.py | 12 |
2 files changed, 7 insertions, 10 deletions
diff --git a/python/report_ops/misc.py b/python/report_ops/misc.py index 0d5a5c8c..757169fe 100644 --- a/python/report_ops/misc.py +++ b/python/report_ops/misc.py @@ -27,6 +27,11 @@ _recipients = { ), "NYOPS": ("nyops@lmcg.com",), "UMB": ("lmcgcustody@umb.com",), + "NY_CREW": ( + "fyu@lmcg.com", + "ghorel@lmcg.com", + "etsui@lmcg.com", + ), } _sma_recipients = { diff --git a/python/report_ops/utils.py b/python/report_ops/utils.py index 2b3ee327..01d8fa6d 100644 --- a/python/report_ops/utils.py +++ b/python/report_ops/utils.py @@ -366,11 +366,7 @@ class QuantifiMonitor( </body> </html>""" ), - to_recipients=( - "fyu@lmcg.com", - "ghorel@lmcg.com", - "etsui@lmcg.com", - ), + to_recipients=(_recipients["NY_CREW"]), attach=[FileAttachment(name=filename + ".xml", content=buf)], ) @@ -406,11 +402,7 @@ class CitcoMonitor( </body> </html>""" ), - to_recipients=( - "fyu@lmcg.com", - # "ghorel@lmcg.com", - # "etsui@lmcg.com", - ), + to_recipients=(_recipients["NY_CREW"]), attach=[FileAttachment(name=filename + ".csv", content=buf)], ) |
