Forum Post: RE: How can i send email on change of fields in single trigger

  • Thread starter Thread starter Gian Torralba
  • Start date Start date
Status
Not open for further replies.
G

Gian Torralba

Guest
You can use a formula field inside the email template and the formula field content should somehow contain a script similar to this: var content = ""; if("my name" != "my new name") content += "name is changed from abc to efg /br "; if("my number" != "my new number") content += "number is changed from 123 to 456 /br "; return content; This will now handle the content dynamically based on the if condition. Let me know if you have more questions on this. Thanks, Gian

Continue reading...
 
Status
Not open for further replies.
Back
Top