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" : "[email protected]",
"to" : "[email protected]",
"subject" : "test subject",
"template" : "tempname",
"h:X-Mailgun-Variables" : JSON.stringify({ data })
}
I have found a solution to send emails with more than 16 kb of data with the help of this Mailgun API please use this API who are facing issues with Mailgun email data limits
URL:- https://documentation.mailgun.com/en/latest/user_manual.html#templates
Code:-