@@ -176,12 +176,13 @@ def get_data(self):
176
176
177
177
def start_data_collection (self ):
178
178
self .get_data ()
179
- threading .Timer (3600 , self .start_data_collection ).start () # Schedule to run every hour
179
+ threading .Timer (3600 , self .start_data_collection ).start () # Scheduled to run every hour
180
180
181
181
def send_alert_email (self , bank ):
182
182
msg = MIMEMultipart ()
183
183
msg ['From' ] = self .credentials ['username' ]
184
184
msg ['To' ] = self .credentials ['BOC_address' ]
185
+ msg ['CC' ] = self .credentials ['username' ]
185
186
msg ['Subject' ] = "Please deliver 40-VK to the cage between SECB and Flowers."
186
187
187
188
body = (f"Dear BOC team,\n \n "
@@ -312,11 +313,15 @@ def get_icon(value):
312
313
right_icon = get_icon (right_content )
313
314
314
315
# Read the last alert date and time
315
- last_alert_time = 'No alerts sent yet'
316
+ last_alert_message = 'No alerts sent yet'
316
317
last_alert_file = os .path .join (_DATADIR , 'last_alert.log' )
317
318
if os .path .exists (last_alert_file ):
318
319
with open (last_alert_file , 'r' ) as file :
319
- last_alert_time = file .read ().strip ()
320
+ lines = file .readlines ()
321
+ last_entry = lines [- 1 ].strip () # Get the latest entry
322
+ last_alert_time , bank_side = last_entry .split (',' ) # Split the entry into time and bank side
323
+ last_alert_message = f"The last alert was sent on { last_alert_time } for the { bank_side } bank"
324
+
320
325
321
326
html = f"""
322
327
<html>
@@ -344,7 +349,7 @@ def get_icon(value):
344
349
</head>
345
350
<body>
346
351
<h2 class="center">FlyRoom CO2 Bank Status</h2>
347
- <p class="center">Last alert sent: { last_alert_time } </p>
352
+ <p class="center">{ last_alert_message } </p>
348
353
<table>
349
354
<tr>
350
355
<th>Bank</th>
0 commit comments