Maison > Article > développement back-end > phpmail发送嵌入式图片的问题
我用phpmail发送嵌入式图片,用
$mail->AddEmbeddedImage($arr['path'], $id, 'img', 'base64', 'image/jpeg');$message=str_replace($img, '<img alt="" src="cid:'.$id.'" style="max-width:90%" />', $message);
邮件正文 一般如果包含图片 用html形式就行,在img标签设置src就可以了。PHPmailer是支持html格式的。或者发附件可以的。
另外在网上看到这个方法的使用方法如下:
AddEmbeddedImage(PICTURE_PATH. "index_01.jpg ", "img_01 ", "index_01.jpg ");
在html中引用c631f7978643a6daa2a567c4463db0b8
这里也用到html格式