Hi,
Trying to add the Queue to the Email "From" field
SDK.JQuery.retrieveMultipleRecords("Queue","$filter=Name eq 'MyQueue'", function (results) { Xrm.Page.getAttribute("from").setValue(results[0]); //Xrm.Page.getAttribute("from").setValue(results[0].Name); //Xrm.Page.getAttribute("from").setValue(results[0].QueueId); }, function (error) { alert(error) }, function () {} );results[0] - returns object correct (checked in the debugger), but does not set it to the From field. Any suggestions?