C++的MIME库 mimetic

fmms 12年前

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;  }

项目主页:http://www.open-open.com/lib/view/home/1335065080953