Suggestion on how to execute this email program
I need to create an automated email that goes out once a week. It sounds straight forward but I am stumped on the best way to execute this.
This email would go out to all members informing them of new activities created the previous week.
The email would contain information on the activities and links to our website going directly to the activity.
The activities are created by another team member and the information is stored in our backend.
I envision the program to work like this:
- The other team member inputs the new activity information in our backend.
- On the day before deployment, an API trigger populates a table with the new offers and their information.
- On the day of deployment, a smart campaign checks to see if there is new information in the table and if yes, sends the email inserting the offer information from the aforementioned table into the email, and if no, no email is deployed from this program for that week.
What is the best way of executing this?
- I cannot have a Custom Object table because the offers are not linked to a person.
- I do not want an API call for every person that would receive the email because that could potentially cause us to hit our limit on API calls in a day.
Thoughts? Any help would be appreciated.