通过mail()PHP将照片上传到Facebook

时间:2013-07-05 12:11:03

标签: php email

今天我尝试将带有说明的照片发布到我的Facebook页面上,我看到简单的电子邮件上传无效。经过一切尝试,我来到这里:

$file = file_get_contents($data['article_embed']);

    $message .= "Content-Type: image/jpg; name=\"". $data['article_embed'] ."\"\r\n"
                ."Content-Transfer-Encoding: base64\r\n"
                ."Content-disposition: attachment; file=\"". $data['article_embed'] ."\"\r\n"
                ."\r\n"
                .chunk_split(base64_encode($file));
    $headers = "MIME-Version: 1.0\r\n";
    $headers.= "Content-Type: multipart/mixed; boundary=\"jimmy\"";
    mail("ner*********ane@m.facebook.com", $array['fb_description'], $message, $headers);

这个也不行。我正在收到带附件的电子邮件(调试)。 Facebook要求将文件/文件附加到正文区域,然后它会自动上传,但它不能正常工作。我应该如何使用它?

0 个答案:

没有答案