I am using laravel notifications for my email handling. The email we send sends an image. This image get's displayed in thunderbird, outlook and otherclients. However it does not work in gmail clients. I looked around everywhere and nothing seems to get it working.
My setup
To test everything I do it locally. I forward http on my port 8080 to ngrok so gmail should be able to make requests to the url.
here is the code I am referring to when I say it does not work
@props(['url'])
<tr>
<td class="header">
<a href="{{ $url }}">
<img src="https://ngrok-link.app/images/test.png" style="max-width: 20em" alt="Motorroutes logo">
</a>
</td>
</tr>
##other things I noticed
I notice that if I fill in any other public image url it does seem to work but as soon as I put it on the server it seems that it just does not want to work.
Thanks in advance for any responses 🙂