Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. for (final File f : mctx.getAttachment())
  2. ctx.addAttachement(f.getName(), new InputStreamSource() {
  3. public InputStream getInputStream() throws IOException {
  4. return new FileInputStream(f);
  5. }
  6. }, "application/pdf");
Add Comment
Please, Sign In to add comment