Skip to main content
Question

Signal (email) when deploying to production

  • February 20, 2026
  • 1 reply
  • 21 views

Forum|alt.badge.img

Is it possible that after a deployment to production has been done an email is sent?

 

In this case it is to inform among others release management. 

the email should contain date time, who carried out the deployment, branch name, application, etc. 

 

 

1 reply

You could do this:

Create a table that holds the last checked model version. (or add it as a column to a system settings table if your application has one).
Create a system flow that checks the model version every x minutes/seconds in the sf_model_info table with the version in the created table. If mismatch, it means the model version was updated. Then send a mail to all the persons in the mail list. Update the table to the new model version. 

But this only works if developers use the official deployment method(which is advised). So any manually changes done to the DB will not be picked up by this check.