I have integrated the Mailgun with Nodejs and I send the data of more than 16kb in the dynamic data using the 'h:X-Mailgun-Variables' and got the limitation error. Please help me with how can I increase the limit?
Error:
{
    "message": "Send options (parameters starting with o:, h:, or v:) are limited to 16 kB total'
}
{
    "from" : "test@gmail.com",
    "to" : "test123@gmail.com",
    "subject" : "test subject",
    "template" : "tempname",
    "h:X-Mailgun-Variables" : JSON.stringify({ data })
}