0
첨부 파일이 보낸 사람의 서명 이미지인지 식별하고 해당 첨부 파일을 건너 뛰고 싶을 때 무시해야하지만 식별 할 수 없습니다. 그 특별한 첨부는 서명 이미지입니다.Java EWS- 첨부 파일이 보낸 사람 서명 이미지인지 식별하는 방법
사용자가 서명 이미지를 추가하는 동안 사용자 지정 속성을 추가 할 수 있습니까? 그렇다면 프로그램에서 해당 속성을 찾을 수 있습니까?
if (emailMessage.getHasAttachments() || emailMessage.getAttachments().getItems().size() > 0) {
//get all the attachments
AttachmentCollection attachmentsCol = emailMessage.getAttachments();
log.info("File Count: " + attachmentsCol.getCount());
Attachment attachment = attachmentsCol.getPropertyAtIndex(i);
//log.debug("Starting to process attachment "+ attachment.getName());
//do we need to skip this attachment
FileAttachment fileAttachment = (FileAttachment) attachment;
// if we don't call this, the Content property may be null.
fileAttachment.load();
booelan isSignatureImage = fileAttachment.isContactPhoto(); // this is false
}
은}