Hello,
I am new to BizTalk. I have created a simple orchestration talking to a
Web service and now want to extend that to send an email depending on the
response from the Web service. I setup a simple orchestration to test
sending emails:
1. It has a receive shape to receive XML messages from a file directory
2. A construct message with Message assignment shape and the following
expressions:
SendEmail_****t(Microsoft.XLANGs.BaseTypes.Address)=RequestAlert_Msg.mailto;
SendEmail_Msg = RequestAlert_Msg;
SendEmail_Msg(SMTP.SMTPHost)="myhost";
SendEmail_Msg(SMTP.Subject)="Test";
SendEmail_Msg(SMTP.From)="Suma";
SendEmail_Msg(SMTP.EmailBodyText)=RequestAlert_Msg.Keywords;
SendEmail_Msg(SMTP.EmailBodyTextCharset)="utf-8";
SendEmail_Msg(SMTP.EmailBodyFileCharset)="utf-8";
SendEmail_Msg(SMTP.MessagePartsAttachments)=2;
That's all. I do not have any pipelines etc., in the orchestration. When I
run, I get a:
"Message could not be sent to the SMTP server. The trans****t error code
was 0x80040217. The server response was not available.
Any thoughts?
Thanks!
Suma.