Announcements
No record found.
Hi, I am creating a plugin which sends email on updated of fields. And in the mail I have to attach all the updated fields value, its previous value, its schema name and its display name. I am not getting any solution how to get updated field values in the plugin.
Thanks in advance
You need to regiaster plugin on post operation and email sent should be the last step. Then it will populate updated value else you can use power automate to send email using email template as well.
Hi,
In a plugin the Target will contains all modified attributes. You can get the list via the Attributes property.Example:
Entity entity = (Entity)context.InputParameters["Target"]; string modifiedFields = string.Join(", ", entity.Attributes.Select(attr => $"{attr.Key} => {attr.Value}"));
To get the previous value, you can use a PreImage. See carldesouza.com/.../
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
We are thrilled to have these Champions in our Community!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Muhammad Shahzad Sh... 69 Most Valuable Professional
ManoVerse 55 Super User 2026 Season 1