I tried this piece of code but it sends for every Monday every month or quarter. How can I restrict it to only the first Monday?
schedule:
email-alerts-monthly:
function: mymodule.check_email_alerts()
weekday: mon
months: '*'
utc: true
email-alerts-quarterly:
function: mymodule.check_email_alerts()
weekday: mon
months: 'jan, apr, jul, oct'
utc: true
Any suggestions?