Outlook はイベントに画像を追加しようとしています。これは実際、標準の iCalendar 形式ではサポートされていません。しかし、私が理解していることから、各出席者に送られる招待メールに画像を追加したいと考えています。その場合、招待状の text/html bodypart を、text/html bodypart と image/xxx bodypart を含む multipart/related に置き換え、2 つを content-id でリンクするだけです。https://www.rfc-editor.org/rfc/rfc2392を参照してください。
具体的な例を得るには、招待状とともに画像を送信するように、Yahoo カレンダーから招待状を送信します。
送信する MIME 構造のタイプは次のとおりです。
Content-Type: multipart/mixed;
Content-Type: multipart/alternative;
Content-Type: text/plain;
Content-Type: multipart/related;
Content-Type: text/html;
... your html version, which will include the image as <img src="cid:someuniqueid"/>
Content-Type: image/gif;
Content-ID: <someuniqueid>
... your image
Content-Type: text/calendar; charset=utf-8; method=REQUEST
Content-Type: application/ics; name="invite.ics"