I trying to send an email to a User, but for some reason, my images are not rendering and I getting: . When I try to
Inspect Element
in Gmail, my images src are not correct:
https://ci5.googleusercontent.com/proxy/BAKUQWuXu4XR7w4v6hboZ0E9LQlwspSfcV4K1tkK6rgoPeQrt0b0J-Q2ndKdbTAV5-XJa4yrVHuTKpBy24_Q-QWt7PnLFY0VanfclSmZrTgg=s0-d-e1-ft#http://test.com/images/email_upload/my-image.png
Correct Url:
http://test.com/images/email_upload/my-image.png
This is my template:
<a href="#" style="color: #4cb2e1; font-weight: lighter; text-decoration: none">
<img src="{{ asset('images/email_upload/my-image.png') }}" width="150" height="50" style="margin-left: 20px; margin-right: 12px" align="left">
</a>
P.S. I using Laravel mailable.