I have a delayed_job designed to send an email using a mailer. Upon completion, I need to record that the email was sent -- I do this by saving the newly created ContactEmail.
I get the following error: Delayed::Job SomeMailJob# (NoMethodError) \"undefined method `subject\' for #<YAML::Object:0x2b0a191f4c78>\"
I\'m trying to use delayed_job to send emails from an input form. In my view i have replaced the line
I have a rails app that uses delayed_job. Whilst DJ gives me a really easy way to setup delays on emails, is there any way to globally configure my app to s开发者_如何学Cend all email asynchronously
I am trying to use heroku and appear to be getting a Postgres error but don\'t have enough information to know what to fix.
I\'m working on a rails app where the user will be uploading large quantities of images. My current setup: Using SWFUpload to upload multiple files at once using the Paperclip plugin with S3 storage
I am scheduling a job to run in say, 10 minutes. How to properly cancel this particular job without using any kind of dirty extra fields in model and so on. Is there any call to remo开发者_如何学编程v
I have a rails app deployed on Heroku.I want to add a feature that enables users of the app to set a reminder.I need some way for the app to schedule sending an email at the time specified by the user
delayed_job is at http://github.com/collectiveidea/delayed_job Can delayed_job ha开发者_如何学Gove the ability to do cron task?Such as running a script every night at 1am.Or run a script every 1 hour
I read the documentation on workers and delayed_job and couldn\'t follow exactly, so wanted to get head-start with some strategy and sample code.