How to notify Email when Order Release had been change of tomorrow's order

We need to send an email to notify relevant parties that tomorrow’s order release has changed.

My thought would be to check for the change in Pre-processing on the SalesOrder Update Method, then send the email in Post-processing (after the data has been updated) based on something set in Pre-processing. I’m not sure if there’s a better method to use that logic with.

pls share you code/script,

I want to create a bpm to send an email to notify relevant people.

In the event that Sales Order Release changes information

In the email, what information has changed?

A sneaky way to do this is to mark the fields you want to track in the Change Log, then create a directive on the ChgLog table, which already has all the changes you want to send, and filter on the OrderRel table.

The only downside is that you’ll get all the changes for the day, so if there are two changes, the first changes will be included in the second email too.

EDIT: Also, email is point to point, so only people on the distribution list will see the audit log. Having it logged makes it visible to others not in the email.