Hi @joejacob94 , thanks for posting on this community!
The way you could manage this is:
- let’s say you have two newsletters, a monthly one and a quarterly one
- you create two contact attributes, let’s say « MONTHLY » and « QUARTERLY », of boolean type
- inside your form, you add two checkboxes, one for the monthly newsletter, one the for quarterly one
- if user checks the checkbox for the monthly one, then MONTHLY = true, otherwise MONTHLY = false
- similarly for the quarterly one
Then, when user subscribes, she will be added to your master list, with these two parameters corresponding to her preferences.
And when you’ll want to send your monthly newsletter, you’ll target the people with MONTHLY = true, and similarly for the quarterly one.
Did I get your question well?
Adding here @Mohit and @RDuclos in the loop, if they have other ideas.