モバイル デバイスで顧客に電子メールで送信する base64 画像を作成しました。電子メール アプリでは機能しますが、Gmail アプリでは画像が表示されません
セキュリティのためにデータ画像をブロックしているGoogleメールだけですか?画像を表示するボタンもありません
コード:
$headers = "差出人: info@mydomain.com\r\n";
$headers .= "返信先: info@mydomain.com\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$imagedata = file_get_contents("http://www.barcodesinc.com/generator/image.php? code=12345&style=68&type=C128B&width=180&height=70&xres=1&font=1");
$base64 = base64_encode($imagedata);
$message ="<img src='data:image/png;base64,$base64'>";
mail($to,$subject,$message,$headers);</pre>