Hi
I have a view with exposed filters and User should be notified, if there are new results in the view.
There are some things, I have in mind. this is just to make it clear.
User performs a search over a views page like domain.com/jobsearch?keys=searchkey
Output is a result set.
The goal:
The result set should be checked once a day of new results and a notification via email should performed.
Rules and Views should be the right way. Think that there must some things safed anywhere like a content type or a profile field.
This is unclear for me, where to safe.
Any suggestion?
Comments
Comment #1
steven jones commentedIf your view has arguments, you can pass these in when calling the view in Rules. Exposed filters are for UI, arguments are the way to do these things in code.
Are you wanting to allow users to change the filters and then 'save' that for later execution?
Comment #2
bennos commentedHi
yes, the filter is exposed and user can change it. something like "domain.com/jobsearch?keys=searchkey".
this should be saved and later (once a day) executed.
How can I save it and where?