@@ -30,8 +30,6 @@ Options for loading Email documents.
3030| [ setDisplayHeader(boolean value)] ( #setDisplayHeader-boolean- ) | Option to display or hide the email header. |
3131| [ getDisplayFromEmailAddress()] ( #getDisplayFromEmailAddress-- ) | Option to display or hide "from" email address. |
3232| [ setDisplayFromEmailAddress(boolean value)] ( #setDisplayFromEmailAddress-boolean- ) | Option to display or hide "from" email address. |
33- | [ getDisplayEmailAddress()] ( #getDisplayEmailAddress-- ) | Option to display or hide email address. |
34- | [ setDisplayEmailAddress(boolean value)] ( #setDisplayEmailAddress-boolean- ) | Option to display or hide email address. |
3533| [ getDisplayToEmailAddress()] ( #getDisplayToEmailAddress-- ) | Option to display or hide "to" email address. |
3634| [ setDisplayToEmailAddress(boolean value)] ( #setDisplayToEmailAddress-boolean- ) | Option to display or hide "to" email address. |
3735| [ getDisplayCcEmailAddress()] ( #getDisplayCcEmailAddress-- ) | Option to display or hide "Cc" email address. |
@@ -54,6 +52,12 @@ Options for loading Email documents.
5452| [ setConvertOwned(boolean convertOwned)] ( #setConvertOwned-boolean- ) | |
5553| [ getDepth()] ( #getDepth-- ) | |
5654| [ setDepth(int depth)] ( #setDepth-int- ) | |
55+ | [ isDisplayAttachments()] ( #isDisplayAttachments-- ) | Gets option to display or hide attachments in the header. |
56+ | [ setDisplayAttachments(boolean displayAttachments)] ( #setDisplayAttachments-boolean- ) | Sets option to display or hide attachments in the header. |
57+ | [ isDisplaySubject()] ( #isDisplaySubject-- ) | Gets option to display or hide subject in the header. |
58+ | [ setDisplaySubject(boolean displaySubject)] ( #setDisplaySubject-boolean- ) | Sets option to display or hide subject in the header |
59+ | [ isDisplaySent()] ( #isDisplaySent-- ) | Gets option to display or hide sent date/time in the header. |
60+ | [ setDisplaySent(boolean displaySent)] ( #setDisplaySent-boolean- ) | Sets option to display or hide sent date/time in the header. |
5761### EmailLoadOptions() {#EmailLoadOptions--}
5862```
5963public EmailLoadOptions()
@@ -118,29 +122,6 @@ Option to display or hide "from" email address. Default: true.
118122| --- | --- | --- |
119123| value | boolean | |
120124
121- ### getDisplayEmailAddress() {#getDisplayEmailAddress--}
122- ```
123- public final boolean getDisplayEmailAddress()
124- ```
125-
126-
127- Option to display or hide email address. Default: true.
128-
129- ** Returns:**
130- boolean
131- ### setDisplayEmailAddress(boolean value) {#setDisplayEmailAddress-boolean-}
132- ```
133- public final void setDisplayEmailAddress(boolean value)
134- ```
135-
136-
137- Option to display or hide email address. Default: true.
138-
139- ** Parameters:**
140- | Parameter | Type | Description |
141- | --- | --- | --- |
142- | value | boolean | |
143-
144125### getDisplayToEmailAddress() {#getDisplayToEmailAddress--}
145126```
146127public final boolean getDisplayToEmailAddress()
@@ -391,3 +372,72 @@ public void setDepth(int depth)
391372| --- | --- | --- |
392373| depth | int | |
393374
375+ ### isDisplayAttachments() {#isDisplayAttachments--}
376+ ```
377+ public boolean isDisplayAttachments()
378+ ```
379+
380+
381+ Gets option to display or hide attachments in the header. Default: true.
382+
383+ ** Returns:**
384+ boolean
385+ ### setDisplayAttachments(boolean displayAttachments) {#setDisplayAttachments-boolean-}
386+ ```
387+ public void setDisplayAttachments(boolean displayAttachments)
388+ ```
389+
390+
391+ Sets option to display or hide attachments in the header.
392+
393+ ** Parameters:**
394+ | Parameter | Type | Description |
395+ | --- | --- | --- |
396+ | displayAttachments | boolean | |
397+
398+ ### isDisplaySubject() {#isDisplaySubject--}
399+ ```
400+ public boolean isDisplaySubject()
401+ ```
402+
403+
404+ Gets option to display or hide subject in the header. Default: true.
405+
406+ ** Returns:**
407+ boolean
408+ ### setDisplaySubject(boolean displaySubject) {#setDisplaySubject-boolean-}
409+ ```
410+ public void setDisplaySubject(boolean displaySubject)
411+ ```
412+
413+
414+ Sets option to display or hide subject in the header
415+
416+ ** Parameters:**
417+ | Parameter | Type | Description |
418+ | --- | --- | --- |
419+ | displaySubject | boolean | |
420+
421+ ### isDisplaySent() {#isDisplaySent--}
422+ ```
423+ public boolean isDisplaySent()
424+ ```
425+
426+
427+ Gets option to display or hide sent date/time in the header. Default: true.
428+
429+ ** Returns:**
430+ boolean
431+ ### setDisplaySent(boolean displaySent) {#setDisplaySent-boolean-}
432+ ```
433+ public void setDisplaySent(boolean displaySent)
434+ ```
435+
436+
437+ Sets option to display or hide sent date/time in the header.
438+
439+ ** Parameters:**
440+ | Parameter | Type | Description |
441+ | --- | --- | --- |
442+ | displaySent | boolean | |
443+
0 commit comments