|
Home > Archive > BizTalk Server Orchestration > May 2005 > CustomFormattersSDK
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
CustomFormattersSDK
|
|
|
| Hi,
I would want to send an e-mail from the orchestration, in=20
MSDN I have the following example:=20
RawOutMsg =3D new=20
Microsoft.XLANGs.CustomFormattersSDK.RawString( =C3,=C2"e-
mail body goes here=C3,=C2" );
SP_Acknowledgement(Microsoft.XLANGs.BaseTypes.Address)=20
=3D "mailto:MyManager@MyCompany.com";
msgAcknowledgement(SMTP.Subject) =3D "Expense report=20
submission confirmation";
but I do not have the CustomFormattersSDK class as I must=20
make? I must make through the Expression shape?
an other thing, what are the SP_Acknowledgement and=20
msgAcknowledgement???
thanks
anja
| |
| Scott Colestock 2005-05-25, 5:59 pm |
| Grab that class from here:
http://msdn.microsoft.com/library/e..._email_ibad.asp
Build it into a C# library, which will need a strong name & be deployed to
the GAC of course.
You will want to declare a message of type RawString, and then set the
Address (if a dynamic port) and SMTP.Subject conext properties on that
message.
Scott Colestock
www.traceofthought.net
"Anja" <anonymous@discussions.microsoft.com> wrote in message
news:0dcb01c56135$3b05bd40$a501280a@phx.gbl...
Hi,
I would want to send an e-mail from the orchestration, in
MSDN I have the following example:
RawOutMsg = new
Microsoft.XLANGs.CustomFormattersSDK.RawString( Ã,Â"e-
mail body goes hereÃ,Â" );
SP_Acknowledgement(Microsoft.XLANGs.BaseTypes.Address)
= "mailto:MyManager@MyCompany.com";
msgAcknowledgement(SMTP.Subject) = "Expense report
submission confirmation";
but I do not have the CustomFormattersSDK class as I must
make? I must make through the Expression shape?
an other thing, what are the SP_Acknowledgement and
msgAcknowledgement???
thanks
anja
|
|
|
|
|