我正在尝试使用下面的代码使用PHP在身体的base64上发送带有图像的电子邮件,但图像永远不会出现...如果我更改为URL它可以工作,但它不适用于base64 ...我在<img src=base64>
的新页面上测试了base64并且也工作了......我错过了什么?
<?php
// recipients
$to = $_POST['email'];
// subject
$subject = 'Test';
// message
$message = '
<html>
<head>
<title>Test</title>
</head>
<body>
<img src="'.$_POST['imageFromOtherPage'].'"/>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
?>
这是我的base64图片示例:http://jsfiddle.net/28nP4/
答案 0 :(得分:6)
我尝试了不同的方法,我找到的唯一方法是上传图片并获取网址,我从此链接获得了这些内容:http://j-query.blogspot.in/2011/02/save-base64-encoded-canvas-image-to-png.html
这很简单:
<?php
// requires php5
define('UPLOAD_DIR', 'images/');
$img = $_POST['img'];
$img = str_replace('data:image/png;base64,', '', $img);
$img = str_replace(' ', '+', $img);
$data = base64_decode($img);
$file = UPLOAD_DIR . uniqid() . '.png';
$success = file_put_contents($file, $data);
print $success ? $file : 'Unable to save the file.';
?>
这会生成一个网址,因此,我使用生成的网址,而不是使用<img src="'.$_POST['imageFromOtherPage'].'"/>
。工作得很完美!
答案 1 :(得分:1)
我有同样的问题,最后我解决了。它可能对您有所帮助: 您可以使用SwiftMailer,但必须添加新的Image TextHeader&#39; Content-Location&#39;。 这是代码:
$message = \Swift_Message::newInstance()->setSubject($subject)->setFrom($fromEmail, 'Name')->setTo($toEmail)->setBcc($bccEmails);
/*get uniqueID from cid:uniqueID */
$imageID = explode(':', $message->embed(\Swift_Image::fromPath('pathToTheImage')->setContentType('image/png')))[1];
/*Add Content-Location to image header*/
/** @var \Swift_Image $image */
$image = $message->getChildren()[0];
$image->getHeaders()->addTextHeader('Content-Location', $imageID);
$message->setBody('here you will have some html with <img src=$imageID alt="Embed Image">', 'text/html');
$mailer->send($message);
答案 2 :(得分:1)
获取所有图片的功能网址:
function getImagesFromMsg($msg, $tmpFolderPath)
{
$arrSrc = array();
if (!empty($msg))
{
preg_match_all('/<img[^>]+>/i', stripcslashes($msg), $imgTags);
//All img tags
for ($i=0; $i < count($imgTags[0]); $i++)
{
preg_match('/src="([^"]+)/i', $imgTags[0][$i], $withSrc);
//Remove src
$withoutSrc = str_ireplace('src="', '', $withSrc[0]);
//data:image/png;base64,
if (strpos($withoutSrc, ";base64,"))
{
//data:image/png;base64,.....
list($type, $data) = explode(";base64,", $withoutSrc);
//data:image/png
list($part, $ext) = explode("/", $type);
//Paste in temp file
$withoutSrc = $tmpFolderPath."/".uniqid("temp_").".".$ext;
@file_put_contents($withoutSrc, base64_decode($data));
}
//Set to array
$arrSrc[] = $withoutSrc;
}
}
return $arrSrc;
}
答案 3 :(得分:0)
<img src="'.$_POST['imageFromOtherPage'].'"/>
您的POST需要以data:image/png;base64,
to form a base64 encoded data:
URI开头。
但即使你解决了这个问题,你正在查看邮件的电子邮件客户端很可能根本不支持该方法。 data:
URI是一种相对较新的现象 - 至少在电子邮件客户端的年表中,大多数仍然在发现有一种称为CSS的技术。在电子邮件中经过试验和测试的图像方法是将图像嵌入到内联附件中。
以下是一些不依赖于库的方法:Make PHP send an email with an inline image attachment
然而,使用像Swiftmailer这样的库可能会带来很多痛苦。 Here is the appropriate Swiftmailer documentation.
答案 4 :(得分:0)
尝试测试$ _POST ['imageFromOtherPage']是否包含base64,可能代码对于Post来说太长了,您需要使用php://input。