Forum Discussion
- QuickBaseJunkieQrew CaptainYou are correct in your assessment that you'll need to send a notification and not a reminder in order to send it as an 'Open' email.
Notifications are triggered when a record is added, modified, or deleted.
In your case, you'll need to set up a trigger when the record is modified. This is only achieved when the record is actually edited and not simply updated as part of a formula.
Automations allow you to modify records automatically (ie without manually changing the record or pressing an API type button). Since you have over 1000 vendors automation is the way to go.
My recommendation would be:- Create a new formula checkbox to 'check' when Today()= the date you want the notification to send.
- Create a text field where you'll indicate that the notification was 'sent'
- Set up an automation (located in the settings for your app) on every day to trigger when the checkbox you created is checked
- Then modify the new text field with value 'sent'
- QuickBaseCoachDQrew CaptainI was wondering this myself if Automations could be used to trigger mass external emails. I did a test and it seemed to work for me.
- QuickBaseJunkieQrew CaptainAwesome!
- QuickBaseCoachDQrew CaptainActually, in a subsequent release, they changed these large updates to be done as a mass update so that method of triggering individual emails will no longer work.
- KeithJusasQrew Captain
- JoshCollinsQrew Assistant CaptainIs there a workaround for the change?
- QuickBaseCoachDQrew CaptainI have a script that has the ability to walk down a report qid# and flip a toggle field to trigger emails. It runs at the rate of about 3 per second which is slow enough to be considered individual updates.
Contact me at QuickBaseCoach.com for one on one assistance.
- _anomDiebolt_Qrew EliteYet another solution is to use script. You create an extra field called [Dirty] and through script update it with either a random number of the current time. This is called "dirtying the record." It is easy to implement. The [Dirty] field does not carry any supplemental information and is only a mechanism to get the record to change and trigger notification.
I would argue that any script technique is superior to all other methods mentioned here not because of its individual performance but because it will open up your world to what can be accomplish with script. All the other solutions require you to do one-off setups and don't substantially expand your capabilities or portfolio of skills. I say script everything! - HillaryWhitneyQrew CadetWe are attempting to accomplish something similar. Is script still the only way to accomplish this?
- QuickBaseCoachDQrew CaptainYes. Contact me at QuickBaseCoach.com if you would like assistance