DEV Community

okunade femi joel
okunade femi joel

Posted on

Having problem with images and links in my react-mail and I have Img and Link imported from @react-email/components

My images and links are not working on development when using react email by resend. I used baseurl to get the images and the link but it is not working. I will be grateful if someone can help me on this.

my baseurl is below:
const baseUrl = process.env.VERCEL_URL
? https://${process.env.VERCEL_URL}
: "http://localhost:3000";

my Img is below:
src={`${baseUrl}/assets/email/admin.png`}
width="40"
height="37"
alt="Docuee"
className="my-0 mx-auto"
/>
my image is placed in "public/assets/email/admin.png"

But it is not working in nextjs. Please help

Top comments (0)