Vmime提取电子邮件的正文

时间:2013-10-16 04:19:38

标签: email vmime

如何使用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天。谁能帮忙???

1 个答案:

答案 0 :(得分:1)

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

文森特