0

如何使用 VMIME lib 提取电子邮件的文本内容部分?我使用以下代码:

vmime::ref <vmime::body> body = Msg -> getBody();
vmime::ref <const vmime::contentHandler> cts = body -> getContents();
cts -> extract(out);

但是,打印出来的内容是邮件MIME结构的整个正文部分,包括边界和参数设置。

--001a11c2e29cfe6d9f04e8b9a834
Content-Type: text/plain; charset=ISO-8859-1

test1

--001a11c2e29cfe6d9f04e8b9a834
Content-Type: text/html; charset=ISO-8859-1

<div dir="ltr"><br clear="all"><div>test1</div>
</div>

--001a11c2e29cfe6d9f04e8b9a834--

我需要的只是文本内容。但是,我找不到任何 API 来仅提取文本内容。

我需要的:

test1

我被困了3天。谁能帮忙???

4

1 回答 1

1

您应该使用 vmime::messageParser 对象来解析您的消息。这样,您将通过 vmime::textPart 对象获取文本内容(使用 messageParser 上的 getTextPartList() 方法)。

文森特

于 2013-10-16T16:18:12.387 回答