android - Sending email with Mailgun - a message body writer for Java type FormDataMultiPart and MIME media type application/x-www-form-urlencoded was not found -
i attempting send email android app using mailgun , jersey. problem when post request response, app crashes error: a message body writer java type, class com.sun.jersey.multipart.formdatamultipart, , mime media type, application/x-www-form-urlencoded, not found . not sure why case. researching suggested add multipart class when creating client, did not work either. note in email plain text, need send email in app may contain attachments - 0 or more images. java class: import com.sun.jersey.api.client.client; import com.sun.jersey.api.client.clientresponse; import com.sun.jersey.api.client.webresource; import com.sun.jersey.api.client.config.clientconfig; import com.sun.jersey.api.client.config.defaultclientconfig; import com.sun.jersey.api.client.filter.httpbasicauthfilter; import com.sun.jersey.multipart.formdatamultipart; import com.sun.jersey.multipart.impl.multipartwriter; import javax.ws.rs.core.mediatype; import javax.ws.rs.core.response; clientconfig cc = new defaultcli...