<div dir="ltr"><div dir="ltr">I was working on updating some ancient notifications we have, streamlining them, and noticed when using an extension attribute it doesn't work or when it sends it sends a blank body even though the attribute values are correct<div><br></div><div>For example, the below doesn't work in body expression but they work fine in subject expression, is there a different way to do it in body?</div><div><br></div><div>body = ''</div><div><br></div><div>if (basic.getExtensionPropertyValue(requestee, '<a href="http://the.namespace.com">http://the.namespace.com</a>', 'attr1') == 'someValue') {</div><div>    body = "This messege"</div><div>} else if (basic.getExtensionPropertyValue(requestee, '<a href="http://the.namespace.com">http://the.namespace.com</a>', 'attr2') == 'someValue') {</div><div>   body = "Different messege"</div><div>} else {</div><div>   body = "Last messege"</div><div>}</div></div></div>