03/15/2019 at 3:33 pm
#487123
Keymaster
If you are going the coding route… you could hook into the following actions:
cn_save-entry:: Run before an entry is saved.cn_saved-entry:: Run after an entry is saved.cn_update-entry:: Run before an entry is updated.cn_updated-entry:: Run after an entry is updated.cn_delete-entry:: Run before an entry is deleted.cn_deleted-entry:: Run after an entry is deleted.
Each of these pass a single value, a Entry object. You can get the email addresses by calling the getEmailAddresses() helper method or interact with the emailAddresses property directly which is a collection of email address objects.
Using these hooks you could do most of anything you wanted. Hope this helps!
