+ All Categories
Home > Technology > LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Date post: 15-Jan-2015
Category:
Upload: sendgrid
View: 1,776 times
Download: 5 times
Share this document with a friend
Description:
Email delivery is a complex and difficult problem, SendGrid makes sure developers never have to deal with that type of pain. Come learn how easy it is to replace your email sending infrastructure with SendGrid and all of the benefits to you and your customers. Then, this question becomes less important: What does it cost you if an email does not get delivered to one of your customers?
Popular Tags:
40
Learn How SendGrid Replaces Your Outbound Email Infrastructure Elmer Thomas Developer Evangelist Elmer.Thomas@SendGrid. com Prepared for LAMPsig - Los Angeles Web Development User Group
Transcript
Page 1: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Learn How SendGrid Replaces Your

Outbound Email Infrastructure

Elmer ThomasDeveloper [email protected]

Prepared for

LAMPsig - Los Angeles Web Development User Group

Page 2: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

About SendGrid• Founded August 2009

– TechStars 2009 Graduate

• Locations– Headquarters: Boulder, CO – Office: Anaheim, CA

• Venture Backed: $5.75 million– Foundry Group– Highway 12 Ventures– Angel Investors

• Dave McClure, Jeff Clavier, David Cohen, Matt Mullenweg, Scott Petry

Page 3: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Currently Sending Over 2 Billion Emails Every Month for Over 30,000 Customers (and Growing)!

Page 4: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

What We BelieveEmail is...

essential to your businessthe best way to communicate with customers

We want YOU to focus on developing killer apps, not building out an email infrastructure.

Page 5: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

The Problem

20% of Emails Missing or Caught by Spam Filters

Page 6: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 7: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

The Problem

It is Non-Trivial to Build an Email Infrastructure.

Page 8: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Categories of Email

Page 9: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Categories of Email

Page 10: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Categories of Email

Page 11: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Example Transactional Emails• Facebook & LinkedIn Friend Requests• Twitter.com Follower Updates• Shipping Alerts • Sign Up Verifications / Double Opt-In

Page 12: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Why Not DIY?

Page 13: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

What Does SendGrid Offer?

Page 14: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Email Deliverability On average, 20% of legitimate emails never reach the inbox.

SendGrid addresses this problem through a unique combination of technology and best practices:– Validation via DKIM, SPF and Sender-ID– Regular reputation monitoring– Dedicated IP addresses – Whitelabeling and link customization– Spam filter testing– Feedback Loops– ISP monitoring and deliverability outreach

Page 15: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

ScalabilityOur cloud infrastructure routinely delivers over a 2 billion emails every month and is ready to scale on demand.Whether you need to send 200 emails a day or 200 million emails a day, we adjust dynamically to meet your needs.Our infrastructure eliminates the need for you to to predict, provision and maintain mail server capacity.

Page 16: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

AnalyticsSendGrid provides powerful data and the insight you need to achieve your email objectives.

• Track opens, unique opens, clicks, unsubscribes and more.

• Segment metrics and ROI performance by email type, campaign, or custom categories.

• Monitor deliverability metrics to determine requests, bounces, delivered rates, blocks and spam reports.

Page 17: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Integration OptionsIntegrate with our SMTP relay or with our robust APIs for custom integration.

API set includes:– SMTP: Deliver custom handling instructions for email through a JSON header.

– Web: Deliver custom handling instructions for email through secure REST API.

– Event: Notifies a URL real-time of events such as opens, clicks, bounces, spam reports, and unsubscribes.

– Parse: Parses content and attachments of incoming email and posts it to your web application.

– OEM: Build your own product/service on top of SendGrid’s powerful email infrastructure.

Page 18: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Basic SMTP Configuration

Page 19: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

SMTP API

Page 20: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Web API• Send mail• Retrieve lists - bounces, unsubscribes, spam reports• Retrieve statistics –

<requests>12342</requests> <bounces>12</bounces> <clicks>10223</clicks> <opens>9992</opens> <spamreports>5</spamreports> <unique_clicks>3</unique_clicks> <unique_opens>6</unique_opens><blocked>7</blocked>

• Pretty much anything that can be manipulated via the website can be done via the API - user profile information, app settings, etc.

Page 21: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Event CallbacksArray( [email] => [email protected] [event] => processed)Array( [email] => [email protected] [response] => 250 2.0.0 OK 1312487387 f25si6410849yhn.68 [event] => delivered)Array( [email] => [email protected] [event] => open)

Page 22: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Parsing Incoming Emails• Point MX record to mx.sendgrid.net• Define the hostname and callback URI• Received messages are parsed and POSTed

[attachments] => 0[dkim] => {@gmail.com : pass}[subject] => test[to] => [email protected][text] => 12[from] => Brandon West <[email protected]>[envelope] => {\"to\":[\"[email protected]\"],\"from\":\"[email protected]\"}[charsets] => {\"to\":\"UTF-8\",\"subject\":\"UTF-8\",\"from\":\"UTF-8\",\"text\":\"us-ascii\"}[SPF] => pass

Page 23: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 24: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 25: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 26: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Apps for Enhancing Your Email

Email to Phone

Email to Twitter

Newsletters

Domain Keys

Event Notification

Even More Apps on SendGrid.com

Click Tracking

Open Tracking

SPAM Checker

Google Analytics

Address Whitelist

Page 27: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 28: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 29: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 30: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 31: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

What’s New?• Infrastructure Improvements• freemail:– direct: 200 /day– Heroku: 200 /day– Rackspace: 40,000 /month – Softlayer: 25,000 /month

• Lite plan:– .10 per thousand

Page 32: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Superior Customer SupportPhone, chat, and email support available to all customers:– Critical Incident Support 24/7– Weekdays 7am to 7pm Mountain Time Zone

Extensive DocumentationOnline Knowledge BaseActive Support Community

Page 33: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Q & A

Contact me at [email protected] when you are ready to go to production and I’ll set you up with a discount.

Page 34: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 35: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 36: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 37: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 38: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 39: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure
Page 40: LAPHP/LAMPSig Talk: Intro to SendGrid - Building a Scalable Email Infrastructure

Recommended