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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/citco_ops/utils.py b/python/citco_ops/utils.py
index 663d982b..5f122091 100644
--- a/python/citco_ops/utils.py
+++ b/python/citco_ops/utils.py
@@ -296,10 +296,10 @@ class GFSMonitor(Payment):
class BamlFcmNotify:
@classmethod
- def email_fcm(cls, date, data):
+ def email_fcm(cls, date, data, cash_account):
em = ExchangeMessage()
em.send_email(
- f"FX Details: 6MZ20049 {date}",
+ f"FX Details: {cash_account} {date}",
HTMLBody(
f"""
<html>
@@ -310,7 +310,7 @@ class BamlFcmNotify:
</style>
</head>
<body>
- Hello,<br><br>Please see below details for an FX Spot Trade we did with the desk today for account 6MZ20049. Please let me know if you need more information.<br><br>{data}
+ Hello,<br><br>Please see below details for an FX Spot Trade we did with the desk today for account {cash_account}. Please let me know if you need more information.<br><br>{data}
</body>
</html>"""
),