In Abstract list I select the abstract and then “Send Email”, fill-in the necessary fields and once hit “Send” there is an error “422 Unprocessable Content” …endpoint /event/1/manage/abstracts/api/email-roles/send
Error message:
{"webargs_errors":{"sender_address":["Missing data for required field."]}}
The payload instead is sending not the expected value ‘sender_address’ but ‘from_address’
{
"from_address": "senderemailhere@email.com",
"subject": "test",
"body": "<p>Gentile {first_name},</p>\n<p>test<br><br><br>Cordiali saluti<br>Katerina S</p>",
"bcc_addresses": [],
"copy_for_sender": true,
"recipient_roles": [
"author"
],
"abstract_id": [
11
]
}
The Indico version is v3.3.5
How this can be fixed to be able to send emails?