I’m using reply_to_message_id to reply to an email chain:
message_data = {
"to": to_recipients,
"subject": email_data.subject,
"body": email_data.body,
"reply_to_message_id": reply_to_message_id # This makes it a reply!
}
However, if the email chain has multiple emails as part of the thread then the email gets correctly added to the email thread but the content of the email only contains the last reply to the email chain (e.g. the one associated to the reply_to_message_id), but does not include all the emails in that email chain (e.g. replies before the reply_to_message_id)
Is there a way to get all the emails to be included when using reply_to_message_id?