Sending Mail from Biztalk

Home Page Forums BizTalk 2004 – BizTalk 2010 Sending Mail from Biztalk

Viewing 1 reply thread
  • Author
    Posts
    • #22902

      Our orchestration does a RFC call. the return status has OK or a userid, when I get a userid, it usually means that a user has a lock on the order. What I want to do is send the user an email asking them to release the order.

      My thought was I could construct a message with

      construct shape

      Message_out(SMTP.EmailBodyText) = “Some text”;

      Message_out(SMTP.Subject) = “Subject”;

      followed by an exprssion

      SMTPAlertPort(Microsoft.XLANGs.BaseTypes.Address) = “mailto:[email protected]“;

      I am not having much success. Any assistance would be appreciated.

       

       

       

    • #22911

      Hi,

       

      You can create a dynamic SMTP Port,

      set Port Property;

      PortSMTP(Microsoft.XLANGs.BaseTypes.Address) = “mailto:[email protected]”;

      Then set Message Property;

      msg_Mail(SMTP.Subject) = “Message Subject”;
      msg_Mail(SMTP.From) = “[email protected]”;
      msg_Mail(SMTP.SMTPHost) = “Host IP or Host Name”;
      msg_Mail(SMTP.EmailBodyText) = “body text”;

       

      these defines must be enough…

       

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.