如何在appengine php中嵌入内嵌图像? 它需要是base64吗? 我明白了 $ MESSAGE-> addAttachment 但是如何在我正在组装的html中引用它?
使用swiftmailer我会
$SMap = PUBLIC_ROOT . "images/sample.jpg";
$type = pathinfo($SMap, PATHINFO_EXTENSION);
$data = file_get_contents($SMap);
$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
$ImageCode = "<img style=\"padding:0 50px 0 0;\" src=\"" . $base64 . "\" alt=\"Image\" />";
只需将图片显示代码插入我想要的位置,但我没有看到任何参考资料,或者因为某些原因我无法找到php appengine原生电子邮件。