top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Sending e-mails from rails and ruby

0 votes
227 views

I am trying to send e-mails using rails 2.3.10 and ruby 1.8.7. I have googled a lot but the best result i got was a code that not sent the e-mail and not dropped any error. Some one knows or has an example of a working e-malier for this version of rails and ruby?

posted Jul 29, 2013 by Abhay Kulkarni

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Best way to send emails on 2.3 was to upgrade to 3.2 or 4.0 and use Ruby 1.9.3+. To help you would be passively accept and reward using outdated, dead and possibly insecure technologies.

answer Jul 29, 2013 by Majula Joshi
Similar Questions
+1 vote

In my local machine I had input some data into database using SQLite3 . When I deployed it to heroku why I can't get data that i input?

I'm doing like this

-in Gemfile
group :development do
 gem 'sqlite3'
end
group :production do
 gem 'pg'
 gem 'rails_12factor'
end
-bundle install
-heroku login
-git init 
-git add .
-git commit -m "test"
-git create
-git push heroku master
-heroku run rake db:migrate

How can I get some data when I deployed it to heroku? Please help me.

...