I try send mail with unrest library and I have this problem this, I used the next code
HttpRequestWithBody request = null;
request = Unirest.post("********************************" + "messages")
.basicAuth("api", "**********************************")
.queryString("from", from)
.queryString("to", to)
.queryString("subject", subject)
.queryString("html", html);
//request.header("content-type", "Content-Type: text/html; charset=UTF-8");
and the response is 414 Request-Uri Too Large.
I try send mail with unrest library and I have this problem this, I used the next code
and the response is 414 Request-Uri Too Large.