top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

I deployed one small app in heroku built on ROR , now I want to send mails. How is it possible?

+1 vote
315 views

I deployed one small app in heroku built on ROR, now I want to send mails. How is it possible can anyone give me a details how to do it.

posted Feb 25, 2016 by anonymous

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

1 Answer

+1 vote

Heroku doesn't provide sending emails itself but you can use sengrid.
https://devcenter.heroku.com/articles/sendgrid

answer Mar 12, 2016 by Vadym Motsukh
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.

+1 vote

I have problem on stylesheet. When I use it on local machine it work properly, but when I deployed it to heroku my style doesn't work. How do I fix this?

+1 vote

Is there a file storage on heroku(other than s3), for the files uploaded in app.

+2 votes

I have installed the Heroku on my workspace, however when I type any command, for example- heroku login or heroku version , it just shows the command- "heroku-cli: Installing core plugins..." and keep doing the same until I stop the installation manually.

Can somebody help me with what the actual issue is and how I can deploy the app on heroku!

+2 votes

How to convert utc time to a time in a particular time zone. As I need to display local time of Timezone(-05:00).

...