Hello,
I am using the Jira notify API to send an email notification about my ticket but it looks like the HTML message gets truncated after 10,000 characters. Is there a way to remove this limit?
#base64Images is a very large string
def resp = post("/rest/api/3/issue/SCRN1-64/notify")
.header("Content-Type", "application/json")
.body([
subject: 'Mail title',
textBody: "Body",
htmlBody: "<p>Here are your images " + base64Images + "</p>",
to: [
"users": [
[
"accountId": "xxx"
]
]
]
])