const data = new FormData();
data.append("recipient", "[email protected]");
data.append("subject", "Test email");
data.append("body", "<p>Hello <b>there</b></p>");
data.append("from", "NomsaSupportTeam <[email protected]>");
data.append("attachments", "/your/local/path-to-file-1");
data.append("attachments", "/your/local/path-to-file-2");
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open("POST", "https://api.nomsa.gov.kh/v1/transactional/email/send");
xhr.setRequestHeader("Authorization", "Bearer your_api_key");
xhr.send(data);