Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > net/imapライブラリ > Net::IMAPクラス > append
append(mailbox, message, flags = nil, date_time = nil) -> Net::IMAP::TaggedResponse
[permalink][rdoc]APPEND コマンドを送ってメッセージをメールボックスの末尾に追加します。
例:
imap.append("inbox", <<EOF.gsub(/\n/, "\r\n"), [:Seen], Time.now) Subject: hello From: someone@example.com To: somebody@example.com hello world EOF