4

更新:我收到的图像是空白图像,是我画布的大小。它不是画布上的图像。我能够将新的画布 PNG 插入 DOM,所以我知道图像数据是好的。

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

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

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

这是我的网络应用程序中的 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';
}

?>
4

1 回答 1

0

我注意到您使用的是heredoc。这可能会导致这里出现问题。

电子邮件中的行尾必须是\r\n(CRLF),所以我建议改用字符串连接重写它,然后它应该可以工作。

另外,请确保您申请chunk_split()$attachment保持行长 <= 76。

于 2012-09-28T06:56:54.430 回答