Dear All,
I am working on an automation to send update emails when the value of the "Customer temp" field is changed I have used some smart values for the automation as under
Customer Temperature has Changed from {{changelog.Customer Temperature.from}} to {{issue.fields.Customer Temperature}} !!!
I get the result as "Customer Temperature has Changed from 12821 to Happy !!!"
where i dont understand why I am getting "12821" value from
expected result: "Customer Temperature has Changed from Unhappy to Happy !!!
I appreciate your helps in advance.
Hi Akram,
Since it is only firing on the value of the field changing, try this:
[ {{fieldChange.fromString}} ] to [ {{fieldChange.toString}} ]
Hi @John Funk
Thanks for your reply, I found the {{changelog.nameofthefield.fromstring}} also useful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What type of customfield is "Customer temp'? Is it a single select field?
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You probably have to call .Name or .Value to get the actual value. Right now, it's picking the ID of the option.
I hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have used both following cases but didn't worked.
Customer Temperature has Changed from {{changelog.Customer Temperature.from.Name}} to {{issue.fields.Customer Temperature}} !!!
And
Customer Temperature has Changed from {{changelog.Customer Temperature.Name}} to {{issue.fields.Customer Temperature}} !!!
let me know if i making any mistake.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear all
I have found out that using the smart value {{changelog.Customer Temperature.fromString}} is giving me the previous value of the field in automations.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.