2022.2

Table Of Contents
gridandchoose:Stats>CategoryStats>yourcategoryname.
MailGun
Dashboard:https://mailgun.com/cp/stats
Documentation:https://documentation.mailgun.com/api-sending.html#sending
WriteaControlScriptthataddsaheaderwiththenameX-Mailgun-Tagandsetsitscontent(for
example:invoices).
Forexample:
merge.context.sections["Content"].addHeader("X-Mailgun-Tag", "invoices");
Youmayspecifymultiplecategories,asfollows:
var headerObj = {
"category": [
"dogs",
"animals",
"pets",
"mammals"
]
};
var section = merge.context.sections["Content"];
section.addHeader("X-Mailgun-Tag", JSON.stringify(headerObj));
Page 1346