How to email the authors of accepted papers
Through the UI
Through the Python Client
Single Blind Venues
submissions = client.get_all_notes(invitation = 'Your/Venue/ID/-/Submission', details='directReplies')
id_to_submission = {note.id: note for note in submissions}
all_decision_notes = []
for submission in submissions:
all_decision_notes = all_decision_notes + [reply for reply in submission.details["directReplies"] if reply["invitation"].endswith("Decision")]
accepted_submissions = [id_to_submission[note["forum"]] for note in all_decision_notes if 'Accept' in note["content"]["decision"]]for submission in accepted_submissions:
subject = f'Message regarding Paper #{submission.number}'
message = f'Hello, please go to your submission and do x, y, z. Find your submission here: https://openreview.net/forum?id={submission.forum}'
recipients = [f'Your/Venue/ID/Paper{submission.number}/Authors']
client.post_message(subject, recipients, message)Double Blind Venues
PreviousHow to view messages sent through OpenReviewNextSubmitting papers, comments, reviews, and decisions
Last updated
Was this helpful?