I am new to ruby on rails I need to create a task that should send emails every 5 minute in windows using ruby on rails, Can anybody suggest me how can i accomplish this ?
Thanks in advance.
I am new to ruby on rails I need to create a task that should send emails every 5 minute in windows using ruby on rails, Can anybody suggest me how can i accomplish this ?
Thanks in advance.
You can implement the script in ruby and then use cron to set it and be executed every 5 minutes. This is an example that how it would work in linux:
script.sh
/path/to/ruby.exe /path/to/your/ruby/script.rb
cron
*/5 * * * * /path/to/your/script.sh
Check This websites for more information: - How to use cron in windows: Cron for Windows