Reputation: 69
I'm experiencing an issue with Gmail hiding images in transactional emails sent through Resend, despite having proper DNS configuration and verification.
Setup:
/apps
folder, each with its own subdomain (e.g., https://a.example.com
, https://b.example.com
)Issue: When Gmail users receive the transactional emails, images are hidden by default with the message:
"Images in this message are hidden. This message might be suspicious or spam."
Important Details:
/public
folderhttps://b.example.com/logo.png
Show Images
does work and render the company logo as expectedExample Email Template:
<Img
src={`${getBaseUrl()}/logo.png`}
width="146"
height="40"
alt="Company Logo"
title="Company Logo"
/>
I tried:
Expected behavior:
Actual behavior:
Upvotes: 2
Views: 254