I want to verify email body content in .eml files saved to disk. I have added the following section to my App.config file:
<system.net>
<mailSettings>
<smtp deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="d:\temp\emails\"/>
</smtp>
</mailSettings>
</system.net>
Sometimes some of the body content in the .eml file is saved incorrectly. I have some values that are being saved with double decimal points
Example:
ABC, XYZ, 2.00, 0..19609, 0.2117772
When I take out the config section and the email is sent to my outlook inbox, I do not get this issue. Example:
ABC, XYZ, 2.00, 0.19609, 0.2117772
It is always the same values that are correct and incorrect. I wouldn't expect that the saving of a file would modify content. Any help on what might be happening here would be much appreciated.