SendGrid is a Cloud-Based Email Delivery Service that enables its customers to launch and manage Marketing Email Campaigns. To derive meaningful and real-time insights out of the data collated in SendGrid, companies transform the available data and feed this into a data warehouse such as Snowflake. This blog post is aimed at guiding you through the process of data transfer from SendGrid to Snowflake – a widely used Cloud Data Warehouse.

This article deals in detail with the above approaches. Here’s a breakdown of what will be covered by the post.

Introduction to SendGrid

Sendgrid Logo
Image Source

SendGrid is a Cloud-Based Email Delivery Service that helps you send emails to customers effortlessly without having to build email servers. It enables you to send promotional emails, resets of passwords, notifications of shipping, email newsletters, and more. SendGrid automatically performs time-consuming activities such as network scaling, reputation monitoring, ISP system integration.

Introduction to Snowflake

Snowflake logo
Image Source

Snowflake is a  SaaS (Software as a Service) Data Warehouse that is easy to use, fast and flexible when compared with traditional databases. It uses a new database engine designed for the cloud. Aside from having many similarities to enterprise data warehouses, it has many unique functionalities and capabilities. 

Snowflake runs on Public Cloud Infrastructure. Its architecture is a hybrid of traditional shared disk databases and shared-nothing architectures. So, it uses a central data storage that is accessible from all nodes in the warehouse.

Methods to Move Data from SendGrid to Snowflake

Broadly, there are two broad approaches to moving data from SendGrid to Snowflake:

Method 1: Using ETL Scripts to Connect Sendgrid to Snowflake

If you happen to have developers ready to be deployed(or can hire resources), you may use this method. SendGrid provides two methods for useful data extraction-Online APIs and SMTP. Once the data is extracted it must be transformed to suit the destination schema. Using the appropriate code, you can then go on to load data into Snowflake.

Method 2: Using Hevo to Connect Sendgrid to Snowflake

Hevo, an official Snowflake Partner for Data Integration, simplifies the process of data transfer from SendGrid to Snowflake for free with its robust architecture and intuitive UI. You can achieve data integration without any coding experience and absolutely no manual interventions would be required during the whole process after set up. Hevo’s pre-built integration with Sendgrid along with 100+ Sources (including 30+ free Data Sources) will take full charge of the data transfer process, allowing you to set up Sendgrid to Snowflake migration seamlessly and focus solely on key business activities.

Get Started with Hevo for Free

Understanding the Methods to Connect Sendgrid to Snowflake

These are the methods you can implement to establish a connection from Sendgrid to Snowflake:

Method 1: Using ETL Scripts to Connect Sendgrid to Snowflake

In a broad sense, the steps involved in achieving the data transfer from SendGrid to Snowflake using custom ETL scripts are:

Prerequisites

There are a few things to keep in mind before performing data migration from SendGrid to Snowflake.

  1. An understanding of working with Web APIs.
  2. A fully-functional SendGrid account. Learn how to set up an account here.
  3. A successful set-up Snowflake data warehouse.

Step 1: Extracting Data from SendGrid using Web APIs

SendGrid data can be extracted using Web, SMTP, and Sendgrid APIs. SendGrid supports two types of Webhooks: Inbound Email Parse Webhook and Event Webhook POSTs. When an email event occurs such as bounce rate or unsubscribe, Event Webhook POSTs occur. The Inbound email parse webhook receives email parameters such as subject, attachments, and then posts them. 

You can make an API call by invoking SendGrid endpoint API. Below is an example.

https://api.sendgrid.com/api/bounces.get.json?api_user=your_sendgrid_username&api_key=your_sendgrid_password&date=1

A JSON response containing bouncing emails will be returned. This is shown below.

[
  {
    "status": "4.0.0",
    "created": "2011-09-16 22:02:19",
    "reason": "Unable to resolve MX host sendgrid.ne",
    "email": "example@example.com"
  },
  {
    "status": "4.0.0",
    "created": "2011-09-19 17:47:15",
    "reason": "Connection timed out",
    "email": "example@example.com"
  },
  {
    "status": "5.1.1",
    "created": "2011-10-17 11:07:10",
    "reason": "550 5.1.1 The email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at http://mail.google.com/support/bin/answer.py?answer=6596 z10si838244anz.171 ",
    "email": "example@example.com"
  },
  {
    "status": "5.7.1",
    "created": "2011-10-26 23:06:22",
    "reason": "550 5.7.1 <example@example.com>... Relaying denied. Proper authentication required. ",
    "reason": "550 5.7.1 <info@bnl.co.uk>... Relaying denied. Proper authentication required. ",
    "email": "example@example.com"
  },
  {
    "status": "5.7.1",
    "created": "2011-12-01 01:45:55",
    "reason": "554 5.7.1 <example@example.com>: Relay access denied ",
    "reason": "554 5.7.1 <richard@hengseng.com>: Relay access denied ",
    "email": "example@example.com"
  },
  {
    "status": "550",
    "created": "2012-06-01 14:10:15",
"reason": "550 support.sendgrid.net [74.63.202.100] is currently not permitted to relay through this server. Perhaps you have not logged into the pop/imap server in the last 30 minutes or do not have SMTP Authentication turned on in your email client. ",
    "email": "example@example.com"
  }
]

Source: https://sendgrid.com/docs/API_Reference/Web_API/bounces.html

Step 2: Transforming SendGrid Data

Before loading data into Snowflake, you need to prepare it depending on the structure of your data. Make sure your data type maps well with the Snowflake data type. Snowflake supports different data types such as BOOLEAN, INTEGER, DATETIME, etc. You can read more about Snowflake data types here. 

You also need to create a data schema before loading data into Snowflake.

Step 3: Loading the Extracted Data to Snowflake

Snowflake provides documentation for loading data into the warehouse. Read more here. There are two different approaches to loading data. 

  1. Using Snowflake web UI. You can choose this option if you are loading a small amount of data. However, it is not suitable as an ETL solution.
  2. Using PUT to stage files and COPY INTO command to load data into the Snowflake table. 

Since Snowflake allows you to make a virtual warehouse to power the insertion process, local drive or Amazon S3 data can also be copied.

Challenges of Extracting Data from SendGrid using Web APIs

  • Infrastructure Maintenance:  You will need to invest in an engineering team since SendGrid may update its APIs at any given time.
  • Real-time Data: So far, you have created a program that loads SendGrid data into Snowflake. However, this data will not be loaded in real-time. So, you will need to write additional code to solve this problem.
  • Ability to Transform: When your SendGrid data type is not supported by Snowflake, for example, XML data, you will need to transform it before loading it into Snowflake. Also, let’s say you want to clean and transform the data before loading it to Snowflake, this too would be hard to achieve in the above method. You will need to write additional code to achieve this.

A much simpler and hassle-free solution would be to use a simple code-free platform like Hevo. Read on for more details on this approach.

Method 2: Using Hevo to Connect Sendgrid to Snowflake

Hevo Logo
Image Source

Hevo, an official Snowflake Partner for Data Integration, is a fully managed platform that can help you directly transfer data from SendGrid and 100+ other sources to Snowflake for free, Business Intelligence tools, Data Warehouses, or a destination of your choice in a completely hassle-free & automated manner. Any data update in SendGrid will be automatically reflected in Snowflake without human intervention.

Hevo is fully managed and completely automates the process of loading data from your desired source and enriching the data and transforming it into an analysis-ready form without writing a single line of code. Its fault-tolerant architecture ensures that the data is handled securely and consistently with zero data loss. With Hevo, you can attain data migration in two simple steps.

  • Configure Source: Connect Hevo Data with SendGrid by providing a unique name for your Pipeline and the API Key.
Sendgrid configuration
Image Source
  • Integrate Data: Complete SendGrid to Snowflake migration by providing your destination name, account name, region of your account, database username and password, database and schema name, and the Data Warehouse name.
Snowflake configuration
Image Source

That is all! Isn’t it as easy as it can get? You can now relax and watch your data load from SendGrid to Snowflake.

Here are some more benefits of using Hevo

  • No Data Loss: Data is moved reliably using the Hevo platform. It has a fault-tolerant architecture that ensures no data is lost. 
  • Out of the Box Integrations: In addition to SendGridDatabases, SDKs, and Cloud Applications can also be connected to Data Warehouses like Snowflake, hence solving all your growing data needs.
  • Minimal Setup:  Hevo has a very intuitive UI that makes the setup easy. Your data export will be up and running in a few minutes.
  • Data Transformations: Hevo can help you clean, transform, and enrich the data both before and after moving to the data warehouse. This ensures you always have your SendGrid data ready for analysis.
  • Automatic Schema Detection and Mapping: Hevo scans the schema of incoming SendGrid data. When changes are detected, Hevo handles them and incorporates the changes into the Snowflake.
  • Strong Customer Support: Hevo team guarantees you 24×7 support over call, email, and chat.
Sign up here for a 14-Day Free Trial!

Conclusion

This blog talks about the two methods you can use to set up a connection from SendGrid to Snowflake: using custom ETL scripts and with the help of a third-party tool, Hevo for free. It also gives a brief overview of SendGrid and Snowflake highlighting their key features and benefits before diving into the setup process.

Visit our Website to Explore Hevo

Extracting complex data from a diverse set of data sources can be a challenging task and this is where Hevo saves the day! Hevo’s pre-built integration with 100+ Sources offers a faster way to move data from Databases or SaaS applications such as SendGrid into your Data Warehouse like Snowflake to be visualized in a BI tool for free. Hevo is fully automated and hence does not require you to code.

Want to take Hevo for a spin? Sign Up for a 14-Day Free Trial and simplify your Data Integration process. You can also have a look at the unbeatable pricing that will help you choose the right plan for your business needs.

We are excited to know what you think of this article. Let us know in the comments section below.

mm
Freelance Technical Content Writer, Hevo Data

Eva loves learning about data science, with an intense passion for writing on data, software architecture, and related topics. She enjoys creating an impact through content tailored for data teams, aimed at resolving intricate business problems.

No-code Data Pipeline for Snowflake