Single email message should contain all the modified field values

We have a scenario where there are nearly 12 fields in an object.

 

When a field is getting modified in a record, an email should be sent capturing the old value and new value of the field. For capturing the old and new values, we use the change log plugin at https://marketplace.creatio.com/app/change-log-creatio

When more than one field is getting modified, only one email containing all the modified fields should be sent.

Kindly suggest how we can implement the same.

We tried using a business process but facing challenges around capturing changes in field-level.

 

product - service creatio

version - 7.16

 

Like 1

Like

1 comments

You can read the column names, old value & new value of field from the log table used in above plugin, in a loop to read all the fields changed. Each time in loop, put the data as one line in a string field parameter like 

"Field Name : <field> Old value: <value>  New Value: <value> " and when loop exists send the email, add this parameter field which you developed in the email body.

Show all comments