How to email the authors of accepted submissions
Using the UI
Under the ‘Overview’ tab of the PC console for your venue, you will find a ‘Venue Roles’ section. Click on the ‘Accepted’ link next to ‘Authors’ to be taken to the Accepted Authors group. On this page, click 'Edit group'. You will then have the option to email members of the group.
This option will work for use cases that do not need to customize messages. If you want to customize messages or have more control over who the recipient is, then please use the python client.
Using the Python Client
PCs can utilize the python client to send customized messages or to a more controlled recipient group. Three different use cases are outlined below. All use cases assume that PCs have already run the Post Decision Stage.
I want to email authors of all accepted submissions:
First, you will need to get all of the accepted submissions for your venue.
Second, loop through the submissions and for each submission send an email using the authorids
in the submission.content. This message will be sent to all the authors of the submission.
I only want to email the corresponding author:
Unless you added a field to the submission form that required authors to indicate the corresponding author, OpenReview does not indicate which author in the list is the corresponding author.
If you want to email the author listed first in the submission, you can do this:
I only want to email accepted submissions with a specific decision:
To start, get all the accepted submissions for your venue, like in the sections above, except this time include the param details='replies'
.
Stored in the submission.details retrieve the replies that contain the Decision invitation.
Retrieve the decision notes for a specific decision. For this example, I will use 'Accept (Proceedings)', please change this to match the specific value in the decision note:
Now that the decision notes have been filtered by the decision, we need the corresponding submission note to get the submission information.
You can then message the author ids of each accepted submission either using the SubmissionX/Authors group or the authorids like in the previous examples.
Last updated