sendgrid / sendgrid-rails-sample-app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SendGrid Sample App - Ruby on Rails

This git repository helps you to send emails quickly and easily through SendGrid using Ruby on Rails.

Create an SendGrid account at http://sendgrid.com/pricing.html

Clone SendGrid application on your local machine

    git clone https://github.com/sendgrid/sendgrid-rails-sample-app.git

###Configuration###

Configure config/environment.rb file with your information:

Update the <sendgrid_username> and <sendgrid_password> with your SendGrid credentials.

    ActionMailer::Base.smtp_settings = {
      :address        => 'smtp.sendgrid.net',
      :port           => '587',
      :authentication => :plain,
      :user_name      => '<sendgrid_username>',
      :password       => '<sendgrid_password>',
      :domain         => 'example.com',
      :enable_starttls_auto => true
    }

Upload your application to your server

About


Languages

Language:Ruby 89.4%Language:CSS 7.0%Language:JavaScript 3.6%