Twilio's cloud-based email delivery platform sending 100B+ emails monthly. Provides SMTP relay, marketing campaigns, and deliverability tools.

62 detections
20 websites tracked
Updated 03 Jun 2026

Websites Using SendGrid

What Is SendGrid?

SendGrid, now branded Twilio SendGrid after Twilio acquired it in 2019, is a cloud-based email delivery platform built to send large volumes of email reliably. In one sentence: SendGrid is the infrastructure many companies use to get transactional and marketing email, order confirmations, password resets, shipping alerts, receipts, and newsletters, into inboxes at scale through an API or SMTP relay. SendGrid has long described its platform as handling on the order of tens of billions of emails per month, and it remains one of the most widely used email-sending services for software products.

Here is the important nuance for technology detection, and the reason this profile is framed carefully: SendGrid is primarily a backend sender. Unlike a chat widget or a marketing-form library, SendGrid does not usually inject visible JavaScript into a public web page. Its work happens server-to-server: your application calls SendGrid's API (or relays through its SMTP servers), and SendGrid delivers the email. As a result, you generally cannot detect SendGrid by looking at a website's front-end the way you can detect HubSpot or Intercom. The most reliable evidence lives in the emails a site sends and in DNS records, not in the page source.

That distinction is worth stating plainly because over-claiming detection here would be inaccurate. When someone says a website "uses SendGrid," they almost always mean the organization sends its email through SendGrid, something you confirm from email headers, tracking-link domains, and DNS, rather than from the homepage's HTML.

This is also why email-sending platforms are systematically undercounted by front-end-only fingerprinting. A tool that only reads a page's HTML and JavaScript will happily identify the chat widget and the analytics tag but will miss the email infrastructure entirely, because that infrastructure never executes in the browser. For competitive and lead research, the practical takeaway is that confirming a sender like SendGrid usually requires either receiving an email from the target (to read its headers) or inspecting the domain's DNS, both of which sit outside the page itself. Server-side analysis that combines DNS, headers, and response behavior is far better suited to this than any in-browser scan.

How SendGrid Works

SendGrid sits between an application and the world's mailbox providers (Gmail, Outlook, Yahoo, corporate mail servers). Its job is to maximize the share of legitimate mail that actually reaches the inbox.

The platform has two broad use cases:

  • Transactional email. Triggered, one-to-one messages, password resets, receipts, account alerts, sent programmatically the moment an event happens. These go out via the Web API (a REST endpoint) or SMTP relay, often using dynamic templates so the content can be personalized without code changes.
  • Marketing campaigns. One-to-many newsletters and promotional sends managed through SendGrid's Marketing Campaigns UI, with contact lists, segmentation, and engagement statistics.

Under the hood, deliverability is the real product. SendGrid manages sender reputation, processes bounces and spam complaints, maintains suppression lists so you stop mailing addresses that bounced or unsubscribed, and offers dedicated IP addresses for high-volume senders who want full control over their reputation. Crucially, SendGrid asks senders to authenticate their domain using SPF, DKIM, and DMARC DNS records and to set up link branding (a custom tracking subdomain), both of which leave detectable traces, as we will see.

Engagement tracking works by rewriting links and embedding a tracking pixel. When SendGrid's "click tracking" is enabled, the links in an email are rewritten to pass through a SendGrid tracking domain so opens and clicks can be measured before the user is redirected to the real destination. Open tracking adds a tiny invisible image whose load is recorded as an "open." These two mechanisms are the source of the most reliable detection signals, because the rewritten links and the tracking pixel both reference SendGrid-controlled hostnames that appear in the email's HTML.

It also helps to understand why a service like SendGrid exists at all. Sending bulk or transactional email straight from your own application server is technically possible but fraught: residential and cloud IP ranges are often blocklisted, mailbox providers throttle unknown senders, and a single spam complaint can poison your sending reputation. SendGrid solves this by operating large, warmed pools of IP addresses with established relationships with the major providers, by automatically handling the feedback loops that report complaints, and by giving senders the authentication tooling (SPF, DKIM, DMARC) that providers now effectively require. In other words, SendGrid is renting you deliverability infrastructure that would be expensive and slow to build in-house, which is exactly why so many products route their mail through it rather than sending directly.

How to Tell if a Website Uses SendGrid

Because SendGrid is a backend service, the honest answer is that front-end detection is limited and often inconclusive. Focus your effort on the email and DNS layers, and treat any front-end hint as weak.

Email headers and tracking-link domains (the strongest signals)

If you can inspect an email the site sent you (a signup confirmation, password reset, or newsletter), view its raw source/headers and look for:

  • Click-tracking links routed through sendgrid.net or a subdomain such as *.sendgrid.net, *.ct.sendgrid.net, or url*.sendgrid.net. Rewritten links of this form are a classic SendGrid tell.
  • Custom link-branding subdomains like email.<theirdomain>.com or em.<theirdomain>.com whose DNS CNAME points to SendGrid (sendgrid.net). SendGrid encourages this "se." / branded-subdomain setup, so a CNAME to sendgrid.net is strong evidence.
  • Headers such as X-SG-EID, X-SG-ID, or a Received: chain that passes through SendGrid's mail servers, and a DKIM-Signature with a d= domain pointing at a SendGrid-managed subdomain.

DNS records

Without any email, you can still inspect a domain's DNS. Look for:

  • A CNAME for a subdomain (often em####, s1._domainkey, s2._domainkey, or url####) pointing to sendgrid.net. SendGrid's domain-authentication wizard creates exactly these.
  • An SPF (TXT) record that includes include:sendgrid.net.

Weak front-end hints

Occasionally a signup or contact form's action attribute posts to a SendGrid endpoint, or a site uses SendGrid's older subscription widgets, leaving a faint front-end trace. This is the exception, not the rule. Do not expect to find SendGrid in View Source.

Tools and method

  1. View raw email in your mail client ("Show original" in Gmail) and search for sendgrid.net, X-SG-, or the DKIM d= domain.
  2. DNS lookup tools (or dig/nslookup) to check TXT (SPF) and CNAME records for include:sendgrid.net or CNAMEs to sendgrid.net.
  3. DevTools Network/Console and View Source can confirm the absence of a front-end footprint and catch the rare form action pointing at SendGrid, but should not be your primary method.
  4. Wappalyzer and similar tools may flag SendGrid when they can see email-related signals, but front-end fingerprinting alone is unreliable for a backend sender.

For context on identifying senders generally, see how to find what email marketing platform a website uses and the wider methodology in how to find out what technology a website uses.

Key Features

  • Email API and SMTP relay. Send programmatically via REST or relay through SendGrid's SMTP servers; client libraries exist for most major languages.
  • Dynamic templates. Handlebars-based templates let you personalize transactional mail without redeploying code.
  • Deliverability tooling. Reputation monitoring, bounce/complaint handling, suppression management, and dedicated IPs.
  • Domain authentication. Guided setup of SPF, DKIM, DMARC, and branded link tracking subdomains.
  • Event webhooks. Real-time callbacks for delivered, opened, clicked, bounced, and spam-report events.
  • Marketing Campaigns. Contact management, segmentation, and a campaign editor for newsletters.

Pros and Cons

Pros

  • Proven, high-volume deliverability with mature reputation management.
  • Developer-friendly API and broad library support.
  • Handles both transactional and marketing email from one platform.
  • Detailed event data via webhooks and analytics.

Cons

  • Deliverability still depends heavily on correct domain authentication and good sending practices, it is not automatic.
  • The marketing UI is less polished than dedicated marketing platforms.
  • Pricing and account standing can be strict; shared-IP reputation issues can affect newer senders.
  • Effectively invisible to front-end detection, which complicates competitive research.

SendGrid vs Alternatives

SendGrid competes with other developer-oriented email APIs and, at the margins, with marketing suites. The table compares common alternatives.

PlatformPrimary focusDetection signalBest for
SendGrid (Twilio)Transactional + marketing email APIsendgrid.net links, CNAME/SPF to sendgrid.netApps needing scalable sending
MailgunDeveloper email API + validationmailgun.org links, mg. subdomain DNSProgrammatic send/receive
Amazon SESLow-cost raw email infrastructureamazonses.com in headers, SES DKIMHigh-volume, cost-sensitive
PostmarkFast transactional emailpstmrk.it tracking linksTransactional-first products
MailchimpMarketing email + newsletterschimpstatic.com, mc.us* front-endNewsletters and campaigns

Because SendGrid is sender infrastructure, contrast it with a front-end-visible marketing tool like Mailchimp when you need to understand a site's visible email footprint versus its delivery backend.

Use Cases

  • Transactional messaging. Password resets, receipts, shipping and account notifications sent reliably at scale.
  • Product and SaaS email. Apps that must deliver time-sensitive mail without running their own mail servers.
  • Newsletters and campaigns. Marketing teams that prefer to keep sending consolidated with their transactional provider.
  • Deliverability research. Confirming a company's sending provider from email headers and DNS is a useful technographic data point for sales and competitive analysis, even though it cannot be read off the homepage.
  • Vendor migration and consolidation. Engineering teams switching email providers verify, via headers and DNS, that mail has fully cut over to (or away from) SendGrid before retiring old credentials and sending domains.
  • Security and anti-phishing checks. Confirming that a sending domain's SPF, DKIM, and DMARC align with SendGrid helps recipients distinguish legitimate mail from spoofed messages that merely claim to come from a brand.

Frequently Asked Questions

Can I detect SendGrid just by looking at a website's source code?

Usually not. SendGrid is a backend email sender and does not typically inject JavaScript or widgets into a public page. The reliable evidence is in the emails the site sends (tracking links through sendgrid.net, SendGrid headers, DKIM signatures) and in DNS records (CNAMEs or SPF includes pointing to sendgrid.net). View Source will rarely reveal it.

What is the clearest single sign that a site uses SendGrid?

A rewritten click-tracking link passing through sendgrid.net (or a subdomain) inside an email the site sent you. Closely behind that is a DNS CNAME for a branded subdomain pointing to sendgrid.net, or an SPF record containing include:sendgrid.net.

Is SendGrid for transactional email or marketing email?

Both. Its origins and core strength are transactional email sent via API/SMTP, but it also offers Marketing Campaigns for newsletters and promotions. Many teams use it for transactional mail and a separate tool for heavy marketing, while others consolidate on SendGrid.

Does using SendGrid guarantee my email reaches the inbox?

No. SendGrid provides the infrastructure and tooling, but inbox placement depends on proper domain authentication (SPF, DKIM, DMARC), list hygiene, content quality, and sending reputation. SendGrid makes good deliverability achievable, not automatic. Senders who mail purchased lists, skip authentication, or ignore bounce and complaint signals can still land in spam even on excellent infrastructure.

Why might a company route email through SendGrid instead of sending it directly?

Sending email directly from an application server is technically easy but operationally risky: cloud IPs are often blocklisted, mailbox providers throttle unknown senders, and reputation is hard to build and easy to ruin. SendGrid provides warmed IP pools, established provider relationships, automatic feedback-loop and bounce handling, and authentication tooling, effectively renting the deliverability infrastructure that would be costly to build and maintain in-house.

How is SendGrid different from Mailchimp?

SendGrid is primarily developer-facing email infrastructure optimized for transactional sending and integration via API, and it is largely invisible on the front end. Mailchimp is a marketing-first platform with a visible front-end footprint (signup forms and tracking scripts) aimed at newsletters and campaigns. They solve overlapping but distinct problems.

Want a reliable read on a website's stack, including the signals a backend sender leaves behind? Analyze any URL with StackOptic.

SendGrid - Websites Using SendGrid | StackOptic