gpt4 book ai didi

PHP 电子邮件附件 - Canvas 图像空白

转载 作者:可可西里 更新时间:2023-10-31 23:49:27 24 4
gpt4 key购买 nike

<分区>

更新:我收到的图像是一张空白图像,大小与我的 Canvas 相同。它不是来自 Canvas 的图像。我能够将新 Canvas PNG 插入到 DOM 中,所以我知道图像数据是好的。

进一步:我可以在图像数据发送到 PHP 表单之前复制图像数据,将该代码粘贴到另一个页面的标签中,因为它的 src 和正确的图像显示!离这里很近!!

我的用户在 HTML5 Canvas 上创建了一个图像。我需要将图像作为电子邮件附件发送给用户。我可以捕获图像并使用 jquery AJAX 将其发布到 PHP 页面。

是的,我已经阅读了十几个其他相关帖子,这就是我走到这一步的方式。不 - 他们都没有回答我的问题 - 这部分总是被跳过。否 - 我不想使用 PHPMailer(可怕的文档)或任何其他类。这可以使用 PHP mail() 实现。我很接近。

这是我的 web 应用程序中的 javascript:

var data = "to=" + to + "&subject=" + subject;          
var canvas2 = document.getElementById("canvas");
var strDataURI = canvas2.toDataURL();
data = data + "&attachment=" + strDataURI;

$.ajax({
type: "POST",
url: "mail2.php",
data: data,
success: function(){

$("#loading").fadeOut(100).hide();
$('#message-sent').fadeIn(500).show();
}
});

发布此数据:

 "to=erik@mydomain.com&subject=test&attachment=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA3gAAAHBCAYAAAA7NBnaAAA..."

到此 PHP 页面(已更新,更简单):

<?PHP    
$to = $_REQUEST['to'];
$subject = 'PHP Mail Attachment Test';
$bound_text = "jimmyP123";
$bound = "--".$bound_text."\r\n";
$bound_last = "--".$bound_text."--\r\n";


$attachment = $_REQUEST['attachment'];
$attachment = substr($attachment,strpos($attachment,",")+1);
$attachment = chunk_split($attachment);



$headers = "From: admin@server.com\r\n";
$headers .= "MIME-Version: 1.0\r\n"
."Content-Type: multipart/mixed; boundary=\"$bound_text\"";

$message .= "If you can see this MIME than your client doesn't accept MIME types!\r\n"
.$bound;

$message .= "Content-Type: text/html; charset=\"iso-8859-1\"\r\n"
."Content-Transfer-Encoding: 7bit\r\n\r\n"
."hey my <b>good</b> friend here is a picture of regal beagle\r\n"
.$bound;

//$file = file_get_contents("http://www.litfuel.net/php/regal_004.jpg");

$message .= "Content-Type: image/png; name=\"index.png\"\r\n"
."Content-Transfer-Encoding: base64\r\n"
."Content-disposition: attachment; file=\"index.png\"\r\n"
."\r\n"
.$attachment
//.chunk_split(base64_encode($file))
.$bound_last;

if(mail($to, $subject, $message, $headers))
{
echo 'MAIL SENT';
} else {
echo 'MAIL FAILED';
}

?>

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com