-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send an email digest with suggested tasks based on skills #1039
Comments
Unlike our async stuff, quantum would make sense here, since it provides a syntax parser for tasks scheduling. What we need
The last step is the easy part. Past the initial setup described in the documentation, we just need to add something like config :code_corps, CodeCorps.Scheduler,
jobs: [
task_suggestions: [
schedule: "@weekly",
task: {ModuleInStep3, :send_all},
]
] to our config. Instead of
|
I should add:
|
@joshsmith How do you feel about converting this into a milestone? |
That’s fine but it could just as easily go in the tasks mvp milestone as separate issues. |
Problem
We want to send an email that uses the (yet unfinished) task matcher to send an email digest with perhaps the top three most recommended, unassigned, open tasks for a user based on their skills.
We can attempt to send this once a week using Quantum jobs.
We'll likely need to be add in some sort of system for being able to unsubscribe from these emails so that future emails don't accidentally end up in spam.
Each task should list:
Ideally we would also factor in the task priority, but that might be a polish step.
The text was updated successfully, but these errors were encountered: