Forum Discussion
Angela,
Here is what I use for one of my notifications. It might not be exactly what you are looking for, but could get you started.
I also used this as a starting point Configuring Aras Innovator Email Notifications
Subject (I had to extend the field length to do this)
Aras Review Notice - NDR: ${Item[@type="sm_DEMO_NDR"]/item_number}: ${Item[@type="sm_DEMO_NDR"]/title} |
Body HTML
<body><font-size=”+1”> <p><b>NDR: <a href="]/id}”>${Item[@type="sm_DEMO_NDR"]/item_number}</a></b><br/>">eide-aras.myngc.com/.../default.aspx
<p><b>Activity: </b>${Item[@type="Activity"]/name}<br/> <p><a href="https://eide-aras.myngc.com/cm/default.aspx?StartItem=inbasket"><b>My InBasket Link</b></a></p> <p>Thank you.</p> |
Query String
<Item type="Activity" id="${Item/ActivityId}" action="get" select="name,message"/> <Item type="${Item/@type}" id="${Item/@id}" action="get" select="item_number,title"/> <Item type="ItemType" id="${Item/@typeId}" action="get" select="title"/> |