Open jaimerambo opened 6 years ago
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.
Html probably is too long for passing in URL. Try using .field("html", html).
.field("html", html)
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.