It looks like getValue() is missing and as such it does not implicitly cast to the correct email ID outside of tests
= @Override
= public void email(Email email, HashMap<String, byte[]> attachments) {
= try {
- System.out.println("EMail: " + email.getOPFMessageCopyMessageID());
+ System.out.println("EMail: " + email.getOPFMessageCopyMessageID().getValue());
= } catch (final Exception e) {
= e.printStackTrace();
= }
= }
| Before |
After |
 |
 |