I try to send email with qrcode, i convert it to image and it work on localhost, but when i send it to email the qr code does not appear!
<!DOCTYPE html>
<html>
<body dir="rtl">
<p>{!! $data['message'] !!}</p>
<img src="data:image/png;base64, {!! base64_encode(QrCode::format('png')->size(100)->generate('helloworld')) !!} ">
</body>
</html>