| .. | .. |
|---|
| 100 | 100 | * @throws SeCurisException |
|---|
| 101 | 101 | * @throws UnsupportedEncodingException |
|---|
| 102 | 102 | */ |
|---|
| 103 | | - public void sendEmail(String subject, String body, String to, String cc, File file) throws SeCurisServiceException, UnsupportedEncodingException { |
|---|
| 103 | + @SuppressWarnings("deprecation") |
|---|
| 104 | + public void sendEmail(String subject, String body, String to, String cc, File file) throws SeCurisServiceException, UnsupportedEncodingException { |
|---|
| 104 | 105 | HttpPost postRequest = new HttpPost(serverUrl); |
|---|
| 105 | 106 | |
|---|
| 106 | 107 | MultipartEntityBuilder builder = MultipartEntityBuilder.create(); |
|---|