Update concept-email.md for .eml file handling#1561
Update concept-email.md for .eml file handling#1561PramodKumarHK89 wants to merge 2 commits intoMicrosoftDocs:mainfrom
Conversation
Added note about .eml file support and required flag.
|
@PramodKumarHK89 : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
There was a problem hiding this comment.
Pull Request Overview
This PR updates the documentation for email file handling in the MIP SDK to clarify the requirements for working with .eml files. The changes emphasize that a different configuration flag must be used when handling .eml files compared to .msg files.
Key Changes:
- Expanded the existing note about .eml file support to specify the required
enable_eml_file_typeflag - Added a code comment example demonstrating how to set the
enable_eml_file_typeflag
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
mip/develop/concept-email.md
Outdated
|
|
||
| > [!NOTE] | ||
| > As of MIP SDK 1.17, .eml files are supported. Handling is similar to .msg for labeling/protection scenarios and to .rpmsg for inspection scenarios, depending on the container format. | ||
| > As of MIP SDK 1.17, .eml files are supported. Handling is similar to .msg for labeling/protection scenarios and to .rpmsg for inspection scenarios, depending on the container format. When working with .eml files, you must set the *enable_eml_file_type* flag instead of *enable_msg_file_type*. For details on how to set this flag, please refer to the [Labeling of MSG Files](#labeling-of-msg-files) section. |
There was a problem hiding this comment.
[nitpick] The reference to 'Labeling of MSG Files' section may be confusing since the section primarily demonstrates MSG file handling. Consider either updating the section title to be more inclusive (e.g., 'Labeling of MSG and EML Files') or creating a dedicated section for EML file configuration to improve clarity.
There was a problem hiding this comment.
Made changes as per the recommendations
|
Can you review the proposed changes? Important: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
Added support details for .eml files in MIP SDK 1.17.
|
@msmbaldwin Could you review this proposed update to your article and enter |
Added note about .eml file support and required flag.