C++ にて VMime を使って ファイルからメールを読む の続きです。 添付ファイル付きのメールの構造 下記のように、multipartの中に本文と添付ファイルのデータがある。 Content-Type: multipart/mixed; Content-Type: text/plain; charset=us-ascii 本文のデータ Content-Type: image/png Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=sample.png; 添付ファイルのデータ メールメッ…