1

有大量有关登录 Gmail 和显示收件箱以及获取联系人等的信息,但我无法弄清楚如何将电子邮件本身放入变量中,以便我可以在 PHP 中使用它来做一些事情。

这是我所拥有的:

function inbox($username, $password){ 
    $url = "https://mail.google.com/mail/feed/atom"; 
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($curl, CURLOPT_USERPWD, $username . ":" . $password);
    curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
    curl_setopt($curl, CURLOPT_ENCODING, "");
    $curlData = curl_exec($curl);
    curl_close($curl);
    return $curlData;
}
//calling the function
$em = "email@gmail.com";
$pw = "pass";
$feed = inbox($em, $pw);
    $x = new SimpleXmlElement($feed);
    echo "<ul>";
        foreach($x->entry as $msg){
            //extracting the link to the message from xml
            $href = $msg->link->attributes()->href;
            //create a link to the message and display title, summary    
            echo "<li><a href=\"".$href."\">".$msg->title."</a><br />".$msg->summary."</li>";
        }
    echo "</ul>";

现在,当我单击刚刚创建的链接时,它只会在 gmail 中打开邮件。我想以字符串/变量访问消息的 html。我尝试过各种各样的事情。我已经尝试将消息链接转发到另一个页面以在 curl 中打开,但谷歌没有向我显示消息,而是发送了一些带有另一个消息链接的 html。如果在浏览器中再次单击该链接,则会在 gmail 中打开,但如果我第三次尝试卷曲到此链接,它会显示一个空白页面。

关键是,我的工作服务器没有启用 imap/pop,而 cURL 是我所知道的最后一个可以实现这一点的想法。

4

1 回答 1

1

我最终远程使用了 imap,然后将其卷曲回有问题的服务器。我已经确定 gmail 不允许通过 cURL 发送消息,这是谷歌的事情之一,比如他们不允许帧等

于 2012-12-07T06:42:48.113 回答