Google Drive sharing links are designed for viewing in a browser — not for embedding in <img> tags. Using a standard share URL as an image source will result in a broken image in your email.
A standard Google Drive share link looks like this:
https://drive.google.com/file/d/[IMAGE_ID]/view?usp=sharingThis URL opens a Drive preview page — it does not return the raw image file. Browsers and email clients cannot render it as an image.
Change the URL format to use the direct export endpoint:
https://drive.google.com/uc?export=view&id=[IMAGE_ID]Then use it in an <img> tag:
<img src="https://drive.google.com/uc?export=view&id=[IMAGE_ID]" alt="Description">https://drive.google.com/file/d/1aBcDeFgHiJkL/view/d/ and /view is your IMAGE_IDThe image file must be shared publicly — set sharing to Anyone with the link in Google Drive. Otherwise the image will not load for email recipients.
width and height attributes to your <img> — email clients often block CSS dimensions.