How to send messages with the python client
Sending a message to all of your venue's authors
subject = 'Your message subject'
message = 'Hello, please go to your submission and do x, y, and z.'
recipients = ['Your/Conference/ID/Authors']
invitation = f'Your/Conference/ID/-/Edit'
client.post_message(subject, recipients, message, invitation=invitation)submissions = client.get_all_notes(invitation = 'Your/Conference/Id/-/Submission')
for submission in 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 = submission.content['authorids']
invitation = f'Your/Conference/ID/-/Edit'
client.post_message(subject, recipients, message, invitation=invitation)Sending an email to the reviewers of submission 123
PreviousHow to customize emails sent through OpenReviewNextHow to Send Decision Notifications Using the UI
Last updated
Was this helpful?