Considerations for Hosting Mail Signature Images on Vercel

> Outlook is a Cache-Control disrepectoor and that's a problem
Cover Image for Considerations for Hosting Mail Signature Images on Vercel

TLDR;

If you're thinking of using Vercel to host your static email signature images, it will do a fine job (though there are better options IMO), but there are a few things you should be aware of.

Outlook Strikes Again

Coming into this scenario, it was already fairly obvious that Outlook does not cache images the same way that browsers do. In fact, I can say with a decent level of certainty that Outlook does not respect Cache-Control headers whatsoever.

I'm sure there's good reasoning for it, but it still doesn't take the sting away.

If your organization as a whole sends a decent number of emails each day, you will be astounded by how many requests are made to your signature images. In the case I was looking at, the company sent about 30,000 emails a day. Over a 6 day period, Vercel analytics showed approximately 2 million requests were made to the images. Interesting ratio, that.

The Cache-Control Gotcha

We wanted to get those image request counts down. While we didn't have high hopes that enabling Cache-Control would alleviate the issue, we figured that it wouldn't hurt to try.

Spoiler: it did hurt. You see, the company was using a corporate network which gives the appearance that all the image requests are coming from only a few a few IP addresses. That actually wasn't a problem until we enabled Cache-Control, at which point Vercel's system mitigations flagged it as a DDoS attack and began blocking all the requests because it was clear that the requestor was ignoring the Cache-Control settings. Those pesky DDoS'ers are so predicable 🥴.

Get Proactive with Your Vercel Firewall Settings

Luckily, Vercel has a new feature that allows you to specify IP addresses and CIDRs that should bypass Vercel's systems mitigations. However, requests from those sources will contribute to your bill.

In other words, if you tell Vercel that some IPs are okay but those IPs end up DDoS'ing you real bad, you're going to get a hefty bill.

Gib Money

Alternative Approaches

Hosting images on Vercel works great for many static assets, but images for email signatures can get complicated. Be sure to carefully plan how and where you host those images.

Alternative approaches to consider:

  1. Use a CDN built for high volume image requests: Cloudflare, AWS, etc.
  2. Embed images directly in the emails. However, note that this will increase email size, can trip spam filters if not done carefully, and recipients might still choose to block images by default in their email client.
  3. Use an email signature management tool (Exclaimer, CodeTwo, etc.).

Cache me outside, Outlook.

-MG


More Stories

Cover Image for NextJS: Unable to Verify the First Certificate

NextJS: Unable to Verify the First Certificate

> UNABLE_TO_VERIFY_LEAF_SIGNATURE

Cover Image for JSS: Reducing Bloat in Multilist Field Serialization

JSS: Reducing Bloat in Multilist Field Serialization

> Because: performance, security, and error-avoidance

Cover Image for On Sitecore Stack Exchange (SSE)

On Sitecore Stack Exchange (SSE)

> What I've learned, what I see, what I want to see

Cover Image for Script: Boost SIF Certificate Expiry Days

Script: Boost SIF Certificate Expiry Days

> One simple script that definitely won't delete your system32 folder

Cover Image for Tips for Applying Cumulative Sitecore XM/XP Patches and Hotfixes

Tips for Applying Cumulative Sitecore XM/XP Patches and Hotfixes

> It's probably time to overhaul your processes

Cover Image for Super Fast Project Builds with Visual Studio Publish

Super Fast Project Builds with Visual Studio Publish

> For when solution builds take too long

Cover Image for Sitecore Symposium 2022

Sitecore Symposium 2022

> What I'm Watching 👀

Cover Image for Tips for Forms Implementations

Tips for Forms Implementations

> And other pro tips

Cover Image for On Sitecore Development

On Sitecore Development

> Broadly speaking

Cover Image for JSS + TypeScript Sitecore Project Tips

JSS + TypeScript Sitecore Project Tips

> New tech, new challenges

Cover Image for NextJS: Short URL for Viewing Layout Service Response

NextJS: Short URL for Viewing Layout Service Response

> Because the default URL is 2long4me

Cover Image for Content Editor Search Bar Not Working

Content Editor Search Bar Not Working

> Sometimes it works, sometimes not

Cover Image for Critical Security Bulletin SC2024-001-619349 Announced

Critical Security Bulletin SC2024-001-619349 Announced

> And other scintillating commentary

Cover Image for Ideas For Docker up.ps1 Scripts

Ideas For Docker up.ps1 Scripts

> Because Docker can be brittle

Cover Image for NextJS/JSS Edit Frames Before JSS v21.1.0

NextJS/JSS Edit Frames Before JSS v21.1.0

> It is possible. We have the technology.

Cover Image for Troubleshooting 502 Responses in Azure App Services

Troubleshooting 502 Responses in Azure App Services

> App Services don't support all libraries

Cover Image for Tips for New Sitecore Developers

Tips for New Sitecore Developers

> If I had more time, I would have written a shorter letter

Cover Image for On Mentorship and Community Contributions

On Mentorship and Community Contributions

> Reflections and what I learned as an MVP mentor

Cover Image for NextJS: Access has been blocked by CORS policy

NextJS: Access has been blocked by CORS policy

> CORS is almost as much of a nuisance as GDPR popups

Cover Image for How to Run Old Versions of Solr in a Docker Container

How to Run Old Versions of Solr in a Docker Container

> Please don't make me install another version of Solr on my local...

Cover Image for Don't Ignore the HttpRequestValidationException

Don't Ignore the HttpRequestValidationException

> Doing so could be... potentially dangerous

Cover Image for Year in Review: 2022

Year in Review: 2022

> Full steam ahead

Cover Image for Symposium 2022 Reflections

Symposium 2022 Reflections

> Sitecore is making big changes

Cover Image for Early Returns in React Components

Early Returns in React Components

> When and how should you return early in a React component?

Cover Image for Add TypeScript Type Checks to RouteData fields

Add TypeScript Type Checks to RouteData fields

> Inspired by error: Conversion of type may be a mistake because neither type sufficiently overlaps with the other.

Cover Image for How to Run Sitecore 10.3.x in Docker on Windows 10

How to Run Sitecore 10.3.x in Docker on Windows 10

> Configs for loading useful asset images

Cover Image for Azure PaaS Cache Optimization

Azure PaaS Cache Optimization

> App Services benefit greatly from proper configuration

Cover Image for Hello World

Hello World

> Welcome to the show

Cover Image for Security Series: App Service IP Restrictions

Security Series: App Service IP Restrictions

> How to manage IP rules "at scale" using the Azure CLI

Cover Image for SPE Script Performance & Troubleshooting

SPE Script Performance & Troubleshooting

> Script never ends or runs too slow? Get in here.