I use an Automation to classify records that are generated from incoming emails, using string matching. The script is triggered whenever a new record enters an Airtable view.
Over time, these incoming emails change, so I frequently need to make adjustments and tweaks to the classifier script as new email types are encountered that were not successfully classified in the first pass of the script.
This creates a problem where by the time I’ve updated the script to accommodate some newly discovered content in a new email type, the system may have already received many tens of emails of this new type, and these will be unclassified, so I need to manually classify them.
I want to find the best way to re-run the classification script over these records already in the view - ie so that every time I make a change and save an updated version of the classifier script, the script would then re-run over the records in the view and the second pass would be able to successfully classify any emails of this new type that already present.
What’s the best way to achieve this?