Skip to content

Commit 46b5563

Browse files
committed
Update vote script
1 parent 829b100 commit 46b5563

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

utils/generate_vote_emails.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ def main():
267267

268268
message_text = """\
269269
Hi {name},
270-
271-
Voting is now open for the March 2024 Plenary Day 2 meeting. You may vote at this
270+
<br><br>
271+
Voting is now open for the September 2024 Plenary Day 1 meeting. You may vote at this
272272
link:
273273
<br><br>
274274
{link}
@@ -282,16 +282,17 @@ def main():
282282
meeting up to the point where first voting block opened, your organization's
283283
vote will not be counted.
284284
<br><br>
285-
Voting will be open until 09:00am US Central Time on March 21, 2024.
285+
Voting will be open until 09:30am on September 23, 2024 Perth Time (UTC +8) /
286+
8:30pm on September 24, 2024 US Central Time (UTC -5).
286287
<br><br>
287288
Thanks,
288289
<br>
289290
Wes Bland (MPI Forum Secretary)\
290291
""".format(name=name, link=text_link)
291292

292293
message = service.create_message(from_addr='"MPI Forum Mailer Bot" <[email protected]>',
293-
to_addr=email, msg=message_text, subject='March 2024 MPI Forum Plenary Day 2 Voting Link')
294-
if not dry_run:
294+
to_addr=email, msg=message_text, subject='September 2024 MPI Forum Plenary Day 1 Voting Link')
295+
if not dry_run or email == "[email protected]":
295296
message_id = service.send_message(message=message)
296297

297298
if __name__ == '__main__':

0 commit comments

Comments
 (0)