By default, the Body of an email message is not captured as SharePoint column meta-data when successfully dragging and dropping an attachment from an email.
To enable the capture of the email body as column meta-data use a
<captureEmailBodyForAttachment> tag.
The
<captureEmailBodyForAttachment> tag must be inserted within opening and
closing <outlook> tags.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <outlook> <captureEmailBodyForAttachment action="delete"/> <captureEmailBodyForAttachment action="insert" value="true"/> </outlook> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <outlook> <captureEmailBodyForAttachment action="delete"/> </outlook> </configuration>
By default, the Body of an email message is not captured as SharePoint column meta-data when successfully transferring an email to SharePoint.
The captureEmailBodyForEmail tag properties are explained in the table below.
Property |
Mandatory / Optional |
Description |
action |
Mandatory |
Set to "insert" to change the default behavior |
value |
Mandatory |
Valid values : "true" or "false" |
<?xml version="1.0" encoding="UTF-8"?> <configuration> <outlook> <captureEmailBodyForEmail action="delete"/> <captureEmailBodyForEmail action="insert" value="true"/> </outlook> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <outlook> <captureEmailBodyForEmail action="delete"/> </outlook> </configuration>