Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Email API Quickstart for Ruby


In this quickstart, you'll learn how to send your first email using the Twilio SendGrid Mail Send API and Ruby(link takes you to an external page).


Prerequisites

prerequisites page anchor

Be sure to perform the following prerequisites to complete this tutorial. You can skip ahead if you've already completed these tasks.

  1. Sign up for a SendGrid account.
  2. Enable Two-factor authentication.
  3. Create and store a SendGrid API Key with Mail Send > Full Access permissions.
  4. Complete Domain Authentication.
  5. Install Ruby.

Skip the prerequisites

Sign up for a SendGrid account

sign-up-for-a-sendgrid-account page anchor

When you sign up for a free SendGrid account(link takes you to an external page), you'll be able to send 100 emails per day forever. For more account options, see our pricing page(link takes you to an external page).

Enable Two-factor authentication

enable-two-factor-authentication page anchor

Twilio SendGrid requires customers to enable Two-factor authentication (2FA). You can enable 2FA with SMS or by using the Authy(link takes you to an external page) app. See the 2FA section of our authentication documentation for instructions.

Create and store a SendGrid API key

create-and-store-a-sendgrid-api-key page anchor

Unlike a username and password — credentials that allow access to your full account — an API key is authorized to perform a limited scope of actions. If your API key is compromised, you can also cycle it (delete and create another) without changing your other account credentials.

Visit our API Key documentation for instructions on creating an API key and storing an API key in an environment variable. To complete this tutorial, you can create a Restricted Access API key with Mail Send > Full Access permissions only, which will allow you to send email and schedule emails to be sent later. You can edit the permissions assigned to an API key later to work with additional services.

Once your API key is assigned to an environment variable — this quickstart uses SENDGRID_API_KEY — you can proceed to the next step.


_10
export SENDGRID_API_KEY=<Your API Key>

Verify your Sender Identity

verify-your-sender-identity page anchor

To ensure our customers maintain the best possible sender reputations and to uphold legitimate sending behavior, we require customers to verify their Sender Identities by completing Domain Authentication. A Sender Identity represents your 'From' email address—the address your recipients see as the sender of your emails.

(information)

Info

To get started quickly, you may be able to skip Domain Authentication and begin by completing Single Sender Verification. Single Sender Verification is recommended for testing only. Some email providers have DMARC policies that restrict email from being delivered using their domains. For the best experience, please complete Domain Authentication. Domain Authentication is also required to upgrade from a free account.

Before installing Ruby, you can see if you already have a version on your machine.

(information)

Info

The Twilio SendGrid Ruby helper library supports Ruby versions 2.4 through the current version of Ruby 2.x, excluding version 2.6.0(link takes you to an external page).

Ruby version check

ruby-version-check page anchor

Check your Ruby version by opening your terminal (also known as a command line or console) and typing the following command.


_10
ruby -v

If you have Ruby installed, the terminal will print something like the following output.


_10
ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-darwin19]

(information)

Info

You may already have a version of Ruby included on your operating system. For example, MacOS includes a version of Ruby for its own system uses. It is not recommended to develop your application using the MacOS system installation of Ruby(link takes you to an external page).

You can use a version manager such as rbenv or rvm to manage multiple versions of Ruby on one machine. See the rbenv(link takes you to an external page) and RVM(link takes you to an external page) projects for more information.

If you do not already have a version of Ruby installed, visit the Ruby website(link takes you to an external page) to download and install a version appropriate for your operating system.


Starting the project

starting-project page anchor

Using a Twilio SendGrid helper library(link takes you to an external page) is the fastest way to deliver your first email.

Start by creating a project folder for this app. The following examples will use a folder called send_mail.


_10
mkdir send_mail

Next, navigate into the send_mail directory where you will complete the rest of the tutorial.


_10
cd send_mail

The RubyGems(link takes you to an external page) package manager is included when installing Ruby. You can use RubyGems to install the Twilio SendGrid helper library and save it as a project dependency. If you want to verify that RubyGems is installed, you can type the following into the terminal.


_10
gem -v

The terminal should print something like the following output.


_10
3.1.4

Install the helper library

install-the-helper-library page anchor

To install the Twilio SendGrid helper library, type the following command into the terminal.


_10
gem install sendgrid-ruby

The terminal will output something like the following output.


_10
Fetching ruby_http_client-3.5.2.gem
_10
Fetching sendgrid-ruby-6.4.0.gem
_10
Successfully installed ruby_http_client-3.5.2
_10
Successfully installed sendgrid-ruby-6.4.0
_10
Parsing documentation for ruby_http_client-3.5.2
_10
Installing ri documentation for ruby_http_client-3.5.2
_10
Parsing documentation for sendgrid-ruby-6.4.0
_10
Installing ri documentation for sendgrid-ruby-6.4.0
_10
Done installing documentation for ruby_http_client, sendgrid-ruby after 0 seconds
_10
2 gems installed


You're now ready to write some code. First, create a send_mail.rb file in your project directory.

The following Ruby block contains all the code needed in your send_mail.rb file to successfully deliver a message with the SendGrid Mail Send API. You can copy this code, modify the to and from variables, and run the code if you like. We'll break down each piece of this code in the following sections.


_13
require 'sendgrid-ruby'
_13
include SendGrid
_13
_13
from = SendGrid::Email.new(email: 'test@example.com', name: "Test") # Change to your verified sender
_13
to = SendGrid::Email.new(email: 'test@example.com', name: "Test") # Change to your recipient
_13
subject = 'Sending with Twilio SendGrid is Fun'
_13
content = SendGrid::Content.new(type: 'text/html', value: 'and easy to do anywhere, even with <strong>Ruby</strong>.')
_13
mail = SendGrid::Mail.new(from, subject, to, content)
_13
_13
sg = SendGrid::API.new(api_key: ENV['SENDGRID_API_KEY'])
_13
response = sg.client.mail._('send').post(request_body: mail.to_json)
_13
puts response.status_code
_13
puts response.headers

Your API call must have the following components.

  • A host (the host for Web API v3 requests is always https://api.sendgrid.com/v3/ )
  • An API key passed in an Authorization Header
  • A request (when submitting data to a resource via POST or PUT , you must submit your request body in JSON format)

In your send_mail.rb file, require the SendGrid helper library, and include the SendGrid module. The library will handle setting the Host, https://api.sendgrid.com/v3/, for you.


_10
require 'sendgrid-ruby'
_10
include SendGrid

Now you're ready to set up the from, to, subject, and message body content. These values are passed to the API in a Personalizations object when using the v3 Mail Send API. You can assign each of these values to variables, and the SendGrid library will handle creating a personalizations object for you.

The subject variable is a string. However, you will set the from and to variables using the helper library's Email method. The Email method takes two arguments: an optional name and an email address. Be sure to set the to value to an address with an inbox you can access.

The content variable is set with the Content method. The Content method takes a type, which can be either text/plain or text/html, and a value, which is a string of the content you wish to send in the message body.


_10
from = SendGrid::Email.new(email: 'test@example.com', name: "Test") # Change to your verified sender
_10
to = SendGrid::Email.new(email: 'test@example.com', name: "Test") # Change to your recipient
_10
subject = 'Sending with Twilio SendGrid is Fun'
_10
content = SendGrid::Content.new(type: 'text/html', value: 'and easy to do anywhere, even with <strong>Ruby</strong>.')

To properly construct the message, pass each of the previous variables into the SendGrid library's Mail method. You can assign this to a variable named mail.


_10
mail = SendGrid::Mail.new(from, subject, to, content)

Next, use the API key you set up earlier. Remember, the API key is stored in an environment variable, so you can use Ruby's ENV class to access it. Assign the key to a variable named sg using the helper library's API method. The helper library will pass your key to the v3 API in an Authorization Header using Bearer token authentication.


_10
sg = SendGrid::API.new(api_key: ENV['SENDGRID_API_KEY'])

Lastly, you need to make a request to the SendGrid Mail Send API to deliver your message.

The helper library uses SendGrid's ruby-http-client(link takes you to an external page) library to construct the request URL by chaining together portions of your desired path. The path to the SendGrid v3 Mail Send endpoint is https://api.sendgrid.com/v3/mail/send. The helper library sets the client for you, so the https://api.sendgrid.com/v3 portion is taken care of by typing sg.client. The next parts of the path are /mail and /send. You can chain the words mail and send onto client to build the rest of the URL.

With the URL built, ruby-http-client then allows you to chain on the type of HTTP request you wish to make with a method matching the name of the HTTP verb appropriate for your desired endpoint. To send a message, you should make an HTTP POST request, so you can use post(). The post() method takes a request_body, which you should set to a JSON version of your message. You can assign this full call to a variable named response. You can also print the response status code and headers.


_10
# Send an HTTP POST request to /mail/send
_10
response = sg.client.mail._('send').post(request_body: mail.to_json)
_10
puts response.status_code
_10
puts response.headers

With all this code in place, you can run your mail_send.rb file in your terminal to send the email.


_10
ruby mail_send.rb

If you receive a 202 status code(link takes you to an external page) printed to the console, your message was sent successfully. Check the inbox of the to address, and you will see your demo message.

If you don't see the email, you may need to check your spam folder.

If you receive an error message, you can reference our response message documentation for clues about what may have gone wrong.

All responses are returned in JSON format. We specify this by sending the Content-Type header. The Web API v3 provides a selection of response codes, content-type headers, and pagination options to help you interpret the responses to your API requests.

(information)

Info

Get additional onboarding support. Save time, increase the quality of your sending, and feel confident you are set up for long-term success with our Email API Onboarding guide.


This is just the beginning of what you can do with our APIs. To learn more, check the resources below.


Rate this page: