Reputation: 47
I am trying to set up a rule that will send me a mail when a node will expire the next day. and of corse the rule must be executed every day in order to work.
So I have a content type 'event' with the field 'end date' When the current date is one day earlier to the field data 'end date' I want to receive a mail : 'the event [node:url] will end tomorrow'
Thanks for your help and excuse my english.
Upvotes: 0
Views: 442
Reputation: 878
Best way to do this without using Cron is to schedule the email to be sent when you save that content type.
So, basically, you add a new rule triggered when content of that content type is saved which schedules the email to be sent the day before the "end date".
UPDATE (adding overall steps on how to achieve this):
That's it, you should be all set.
Upvotes: 1