PHPMailer, AddStringAttachment and Data URI Scheme

 ̄綄美尐妖づ 提交于 2019-11-28 11:15:42

Yes it should be possible. Are you calling toDataURL() with the 'image/png' MIME type so it knows how to output it?

Try breaking your script into two components - make sure you really have a PNG then try mailing it.

For example, will test.png open on your computer when written?..

<?php
$contact_image_data="data:image/png;base64,iVBORw0KGgo[...]";
$fp = fopen('test.png', 'w');
fwrite($fp, $contact_image_data);
fclose($fp);
?>

Hope that helps a bit!

It turns out I needed to strip the data:image/png;base64, section and base64_decode() the data:

$contact_image_data="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA";
$data = substr($contact_image_data, strpos($contact_image_data, ","));
$filename="test.png"; 
$encoding = "base64"; 
$type = "image/png";
$mail->AddStringAttachment(base64_decode($data), $filename, $encoding, $type);          
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!