Template syntax
const body = {
html: "<html><body><p>{{title}}</p></body></html>",
content: {
title: "Hello World!"
}
}
const res = await fetch("mattermix.com/api/v1/image", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${process.env.MATTERMIX_API_KEY}`
},
body: JSON.stringify(body)
});Last updated