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