I was looking for ways to embed an image in an email sent from Laravel. The method I found that most people use is to insert an image as an attachment.
<img src="{{$message->embed(asset('assets/img/logo.png'))}}" style="padding:0px; margin:0px" />
Is there a way to embed an image without binding? I tried converting the image to base64 strings, but that didn't even work.
email laravel laravel-4
Black pearl
source share