- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 Horde IMAP 客户端从 IMAP 服务器获取电子邮件。到目前为止一切顺利,我可以进行身份验证、连接到邮箱、下载和解析电子邮件。
现在的问题是我需要解析带附件的电子邮件,我发现弄清楚如何设置获取查询,然后获取并访问电子邮件附件有点棘手。
我曾尝试在网上搜索,但网上没有太多关于如何使用 Horde IMAP Client 的信息,而且他们的文档也没有任何帮助。
如何从电子邮件中提取附件?
这是我用来从邮箱中获取信封详细信息和纯文本电子邮件的代码(使用 Composer 而不是 PEAR,因此使用了 autoload
):
<?php
// Init
require_once('./vendor/autoload.php');
echo '<pre>';
// Function: Returns a comma-separated list of names and email addresses from a Horde_Mail_Rfc822_List object
function get_parties($addresses) {
$parties = [];
foreach($addresses as $address){
$name = trim($address->personal, "'") ;
$email = $address->bare_address;
$parties[] = $name ? "$name ($email)" : $email;
}
return implode(', ', $parties);
}
// Connect to IMAP
try {
$client = new Horde_Imap_Client_Socket(array(
'username' => 'my@email.com',
'password' => 'S0m3PASS',
'hostspec' => 'mygreat.webhost.com',
'port' => '143',
'secure' => 'tls'
));
}
// Failed to connect
catch (Horde_Imap_Client_Exception $e) {
echo "<H1>ERROR!!</H1>";
}
// Search for messages in the Inbox
$query = new Horde_Imap_Client_Search_Query();
$results = $client->search('INBOX', $query);
// Loop over each email found
foreach($results['match'] as $match) {
$query = new Horde_Imap_Client_Fetch_Query();
$query->envelope();
$query->structure();
$uid = new Horde_Imap_Client_Ids($match);
$list = $client->fetch('INBOX', $query, array('ids' => $uid));
$envelope = $list->first()->getEnvelope();
$subject = $envelope->subject;
$from = get_parties($envelope->from);
$to = get_parties($envelope->to);
$cc = get_parties($envelope->cc);
$timestamp = $envelope->date->getTimestamp();
$bst = date('I', $timestamp) * 3600;
$date = gmdate('d/m/Y H:i', $timestamp + $bst); // If no date is specified in the email header, it will default to now
$part = $list->first()->getStructure();
$id = $part->findBody();
$body = $part->getPart($id);
// Output the envelope details
echo "<h1>$date</h1>" .
"<h1>From: $from</h1>" .
"<h1>To: $to</h1>" .
($cc ? "<h1>CC: $cc</h1>" : '') .
"<h1>$subject</h1>";
// Get the message
$query2 = new Horde_Imap_Client_Fetch_Query();
$query2->bodyPart($id, array(
'decode' => true,
'peek' => true
));
$list2 = $client->fetch('INBOX', $query2, array(
'ids' => $uid
));
$message2 = $list2->first();
$text = $message2->getBodyPart($id);
$body->setContents($text);
echo $text = $body->getContents();
echo '<br><br>';
echo '<H1>ENVELOPE</H1>';
print_r($envelope);
echo '<br><br>';
echo '<H1>STRUCTURE</H1>';
print_r($part);
echo '<hr>';
}
echo '</pre>';
?>
最佳答案
基于this example ,我已将您的代码修改如下:
<!DOCTYPE html>
<html>
<body>
<pre>
<?php
require_once './vendor/autoload.php';
class ImapClient {
protected $mailbox = '';
protected $client = null;
protected $params = array();
public function __construct(array $params) {
$this->params = $params;
}
public function login() {
$this->client = new Horde_Imap_Client_Socket($this->params);
}
public function logout() {
if ($this->client) {
$this->client->close();
}
$this->client = null;
}
public function get_messages($mailbox) {
$this->mailbox = $mailbox;
$query = new Horde_Imap_Client_Search_Query();
$results = $this->client->search($this->mailbox, $query);
$query = new Horde_Imap_Client_Fetch_Query();
$query->envelope();
$query->structure();
return $this->client->fetch($this->mailbox, $query, array('ids' => $results['match']));
}
public function parse_message_envelope(Horde_Imap_Client_Data_Fetch $message) {
$envelope = $message->getEnvelope();
$msghdr = new StdClass;
$msghdr->recipients = $envelope->to->bare_addresses;
$msghdr->senders = $envelope->from->bare_addresses;
$msghdr->cc = $envelope->cc->bare_addresses;
$msghdr->subject = $envelope->subject;
$msghdr->timestamp = $envelope->date->getTimestamp();
return $msghdr;
}
public function parse_message_parts(Horde_Imap_Client_Data_Fetch $message) {
// We need the structure at various points below.
$structure = $message->getStructure();
// Now fetch the rest of the message content.
$query = new Horde_Imap_Client_Fetch_Query();
$query->fullText();
// Fetch all of the message parts too.
$typemap = $structure->contentTypeMap();
foreach ($typemap as $part => $type) {
// The body of the part - attempt to decode it on the server.
$query->bodyPart($part, array(
'decode' => true,
'peek' => true,
));
$query->bodyPartSize($part);
}
$id = new Horde_Imap_Client_Ids($message->getUid());
$messagedata = $this->client->fetch($this->mailbox, $query, array('ids' => $id))->first();
// Store the data for this message.
$msgdata = new StdClass;
$msgdata->id = $message->getUid();
$msgdata->contentplain = '';
$msgdata->contenthtml = '';
$msgdata->attachments = array(
'inline' => array(),
'attachment' => array(),
);
$plainpartid = $structure->findBody('plain');
$htmlpartid = $structure->findBody('html');
foreach ($typemap as $part => $type) {
// Get the message data from the body part, and combine it with the structure to give a fully-formed output.
$stream = $messagedata->getBodyPart($part, true);
$partdata = $structure->getPart($part);
$partdata->setContents($stream, array('usestream' => true));
if ($part == $plainpartid) {
$msgdata->contentplain = $partdata->getContents();
} else if ($part == $htmlpartid) {
$msgdata->contenthtml = $partdata->getContents();
} else if ($filename = $partdata->getName($part)) {
$disposition = $partdata->getDisposition();
$disposition = ($disposition == 'inline') ? 'inline' : 'attachment';
$attachment = new StdClass;
$attachment->name = $filename;
$attachment->type = $partdata->getType();
$attachment->content = $partdata->getContents();
$attachment->size = strlen($attachment->content);
$msgdata->attachments[$disposition][] = $attachment;
}
}
return $msgdata;
}
}
$params = array(
'username' => 'my@email.com',
'password' => 'S0m3PASS',
'hostspec' => 'mygreat.webhost.com',
'port' => '143',
'secure' => 'tls'
);
$client = new ImapClient($params);
try {
$client->login();
} catch (Exception $e) {
die($e->getMessage());
}
// Retrieve the messages
$messages = $client->get_messages('INBOX');
printf("Found %d messages\n", $messages->count());
foreach ($messages as $message) {
$hdr = $client->parse_message_envelope($message);
printf("\nDate: %s\n", date('d/m/Y H:i:s', $hdr->timestamp));
printf("From: %s\n", implode(',', $hdr->senders));
printf("To: %s\n", implode(',', $hdr->recipients));
if (count($hdr->cc)) printf("Cc: %s\n", implode(',', $hdr->cc));
printf("Subject: %s\n", $hdr->subject);
$body = $client->parse_message_parts($message);
//printf("Plain Body: %s\n", $body->contentplain);
//printf("HTML Body: %s\n", $body->contenthtml);
foreach ($body->attachments as $type => $attachments) {
if (count($attachments)) {
foreach ($attachments as $nr => $attachment) {
printf("\n** %s #%d **\n", UCFirst($type), $nr);
printf("\tName: %s\n", $attachment->name);
printf("\tType: %s\n", $attachment->type);
printf("\tSize: %d\n", $attachment->size);
//printf("\tContent: %s\n", base64_encode($attachment->content));
}
}
}
}
$client->logout();
?>
</pre>
</body>
</html>
关于php - 如何在 PHP 中使用 Horde IMAP 客户端提取电子邮件附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47394762/
我在网上搜索但没有找到任何合适的文章解释如何使用 javascript 使用 WCF 服务,尤其是 WebScriptEndpoint。 任何人都可以对此给出任何指导吗? 谢谢 最佳答案 这是一篇关于
我正在编写一个将运行 Linux 命令的 C 程序,例如: cat/etc/passwd | grep 列表 |剪切-c 1-5 我没有任何结果 *这里 parent 等待第一个 child (chi
所以我正在尝试处理文件上传,然后将该文件作为二进制文件存储到数据库中。在我存储它之后,我尝试在给定的 URL 上提供文件。我似乎找不到适合这里的方法。我需要使用数据库,因为我使用 Google 应用引
我正在尝试制作一个宏,将下面的公式添加到单元格中,然后将其拖到整个列中并在 H 列中复制相同的公式 我想在 F 和 H 列中输入公式的数据 Range("F1").formula = "=IF(ISE
问题类似于this one ,但我想使用 OperatorPrecedenceParser 解析带有函数应用程序的表达式在 FParsec . 这是我的 AST: type Expression =
我想通过使用 sequelize 和 node.js 将这个查询更改为代码取决于在哪里 select COUNT(gender) as genderCount from customers where
我正在使用GNU bash,版本5.0.3(1)-发行版(x86_64-pc-linux-gnu),我想知道为什么简单的赋值语句会出现语法错误: #/bin/bash var1=/tmp
这里,为什么我的代码在 IE 中不起作用。我的代码适用于所有浏览器。没有问题。但是当我在 IE 上运行我的项目时,它发现错误。 而且我的 jquery 类和 insertadjacentHTMl 也不
我正在尝试更改标签的innerHTML。我无权访问该表单,因此无法编辑 HTML。标签具有的唯一标识符是“for”属性。 这是输入和标签的结构:
我有一个页面,我可以在其中返回用户帖子,可以使用一些 jquery 代码对这些帖子进行即时评论,在发布新评论后,我在帖子下插入新评论以及删除 按钮。问题是 Delete 按钮在新插入的元素上不起作用,
我有一个大约有 20 列的“管道分隔”文件。我只想使用 sha1sum 散列第一列,它是一个数字,如帐号,并按原样返回其余列。 使用 awk 或 sed 执行此操作的最佳方法是什么? Accounti
我需要将以下内容插入到我的表中...我的用户表有五列 id、用户名、密码、名称、条目。 (我还没有提交任何东西到条目中,我稍后会使用 php 来做)但由于某种原因我不断收到这个错误:#1054 - U
所以我试图有一个输入字段,我可以在其中输入任何字符,但然后将输入的值小写,删除任何非字母数字字符,留下“。”而不是空格。 例如,如果我输入: 地球的 70% 是水,-!*#$^^ & 30% 土地 输
我正在尝试做一些我认为非常简单的事情,但出于某种原因我没有得到想要的结果?我是 javascript 的新手,但对 java 有经验,所以我相信我没有使用某种正确的规则。 这是一个获取输入值、检查选择
我想使用 angularjs 从 mysql 数据库加载数据。 这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上 我想获取这个值并通过 angularjs
我正在使用 autoLayout,我想在 UITableViewCell 上放置一个 UIlabel,它应该始终位于单元格的右侧和右侧的中心。 这就是我想要实现的目标 所以在这里你可以看到我正在谈论的
我需要与 MySql 等效的 elasticsearch 查询。我的 sql 查询: SELECT DISTINCT t.product_id AS id FROM tbl_sup_price t
我正在实现代码以使用 JSON。 func setup() { if let flickrURL = NSURL(string: "https://api.flickr.com/
我尝试使用for循环声明变量,然后测试cols和rols是否相同。如果是,它将运行递归函数。但是,我在 javascript 中执行 do 时遇到问题。有人可以帮忙吗? 现在,在比较 col.1 和
我举了一个我正在处理的问题的简短示例。 HTML代码: 1 2 3 CSS 代码: .BB a:hover{ color: #000; } .BB > li:after {
我是一名优秀的程序员,十分优秀!