Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Email attachments – POP3 adapter › Re: Email attachments – POP3 adapter
November 21, 2006 at 3:55 AM
#16471
To get out the attachment file name you can find it in the MIME properties.
Eks.
// Get the n'th part and set to a new message
Out = oXMessage[n];
// Set message properties
Out(FILE.ReceivedFileName) = Out(MIME.FileName);
This works for me on Biztalk 2006. In Biztalk 2004 you have to use the SMTPUtils class.
Hope this hepls you out
Regards
Benny Helander