We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the modal is complete, let's set up the email to run as "background jobs". Please follow the steps below:
Go to mandrill.com and set up a free account to send "transactional emails". Get the API keys to include in the application.
Read documentation about how to set up mandrill for rails application. There might be a gem we can install.
Watch this rails cast about sidekiq: http://railscasts.com/episodes/366-sidekiq?autoplay=true sidekiq is a small server that we can use to perform background jobs (think of them as workers).
Gem: https://github.com/mperham/sidekiq Wiki: https://github.com/mperham/sidekiq/wiki
Create the mailer and trigger it from the modal.
Code the mailer in a worker that is run on sidekiq
The text was updated successfully, but these errors were encountered:
adamesj
No branches or pull requests
When the modal is complete, let's set up the email to run as "background jobs". Please follow the steps below:
Go to mandrill.com and set up a free account to send "transactional emails". Get the API keys to include in the application.
Read documentation about how to set up mandrill for rails application. There might be a gem we can install.
Watch this rails cast about sidekiq: http://railscasts.com/episodes/366-sidekiq?autoplay=true
sidekiq is a small server that we can use to perform background jobs (think of them as workers).
Gem: https://github.com/mperham/sidekiq
Wiki: https://github.com/mperham/sidekiq/wiki
Create the mailer and trigger it from the modal.
Code the mailer in a worker that is run on sidekiq
The text was updated successfully, but these errors were encountered: