- 授权协议: 未知
- 开发语言: C/C++
- 操作系统: UNIX
- 软件首页: http://codesink.org/mimetic_mime_library.html
- 软件文档: http://codesink.org/data/mimetic/docs/html/index.html
软件介绍
mimetic 是一个 C++ 的类库,用来处理 MIME 数据。
示例代码:
#include <iostream>
#include <mimetic/mimetic.h>
using namespace std;
using namespace mimetic;
int main()
{
MimeEntity me;
me.header().from("me <me@domain.com>");
me.header().to("you <you@domain.com>");
me.header().subject("my first mimetic msg");
me.body().assign("hello there!");
cout << me << endl;
return 0;
}
