るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.014秒)

別のキーワード

  1. openssl subject
  2. openssl subject=
  3. request subject
  4. request subject=
  5. rss dc_subject

ライブラリ

クラス

検索結果

Net::IMAP#append(mailbox, message, flags = nil, date_time = nil) -> Net::IMAP::TaggedResponse (18129.0)

APPEND コマンドを送ってメッセージをメールボックスの末尾に追加します。

...
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

@param mailbox メッセー...