Wordle

Wordle: BTS3
Showing posts with label SMTP. Show all posts
Showing posts with label SMTP. Show all posts

Sunday, July 12, 2009

Sending email attachments from BizTalk orchestration

There are some ways to add attachments to outgoing email from BizTalk orchestration.

One method is the use dynamic send port and to set output message content with the attachments paths.

The syntax for the "SMTP.Attachements" property is File1File2...

Sample:

Msg(SMTP.Attachements)="C:\Temp\smpt1.jpgC:\Temp\smpt2.jpg";

Shimshon