Why is the e-mail sent by BizTalk "body.csv" in OUTLOOK 2016?

I created a simple interface that sends an email. I set the file name

msg_out_renamed(MIME.FileName) = FileName;

This works great in my 2013 forecast, it shows how "client_inv_20160909090658.csv".

But the recipient who uses Outlook 2016 discovers it as " body.csv ". When he decides to save the attachment, the file name in the save dialog as "client_inv_20160909090658.csv".

Why is this happening, and is there a way to prevent this?

+1
source share
1 answer

MIME.FileName .

: ( ".part" )

Message.part(MIME.FileName) = "NewFileName.txt";

: ( ".BodyPart" )

pInMsg.BodyPart.PartProperties.Write("FileName", "http://schemas.microsoft.com/BizTalk/2003/mime-properties", "NewFileName.txt");

, BizTalk. .

+1

Source: https://habr.com/ru/post/1676925/


All Articles