321件ヒット
[101-200件を表示]
(0.135秒)
ライブラリ
- ビルトイン (56)
- getoptlong (12)
- logger (12)
-
minitest
/ unit (1) -
net
/ http (24) -
net
/ imap (120) -
net
/ smtp (36) - optparse (24)
-
rubygems
/ specification (12) -
shell
/ system-command (12) -
syslog
/ logger (12)
クラス
- Exception (44)
-
Gem
:: Specification (12) - GetoptLong (12)
- Logger (12)
-
Net
:: HTTPResponse (24) -
Net
:: IMAP :: BodyTypeMessage (108) -
Net
:: IMAP :: Envelope (12) -
Net
:: SMTP (36) -
OptionParser
:: ParseError (24) -
Shell
:: SystemCommand (12) - SignalException (12)
-
Syslog
:: Logger :: Formatter (12)
モジュール
キーワード
- call (12)
-
content
_ id (12) - description (12)
- encoding (12)
-
exception
_ details (1) - formatter (12)
- inspect (12)
- language (12)
- md5 (12)
-
media
_ subtype (12) -
media
_ type (12) - msg (12)
- notify (12)
- param (12)
-
send
_ mail (12) - sendmail (12)
- signm (12)
- subtype (12)
-
to
_ s (24)
検索結果
先頭5件
-
Net
:: IMAP :: BodyTypeMessage # param -> { String => String } | nil (3203.0) -
MIME のボディパラメータをハッシュテーブルで返します。
MIME のボディパラメータをハッシュテーブルで返します。
ハッシュテーブルのキーがパラメータ名となります。
@see 2045 -
Net
:: SMTP # send _ message(mailsrc , from _ addr , *to _ addrs) -> () (3120.0) -
メールを送信します。
...たとえば String や File)。
from_domain は送り主のメールアドレス ('...@...'のかたち) 、
to_addrs には送信先メールアドレスを文字列で渡します。
require 'net/smtp'
Net::SMTP.start('smtp.example.com') {|smtp|
smtp.send_message mail_string,... -
Exception
# to _ s -> String (3110.0) -
エラーメッセージをあらわす文字列を返します。
...エラーメッセージをあらわす文字列を返します。
//emlist[例][ruby]{
begin
1 + nil
rescue => e
p e.message #=> "nil can't be coerced into Fixnum"
end
//}... -
Net
:: HTTPResponse # msg -> String (3110.0) -
HTTP サーバがリザルトコードに付加して返すメッセージです。 例えば 'Not Found' などです。
...して返すメッセージです。
例えば 'Not Found' などです。
msg は obsolete です。使わないでください。
//emlist[例][ruby]{
require 'net/http'
uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.message # => "OK"
//}... -
Net
:: IMAP :: BodyTypeMessage # media _ type -> String (3108.0) -
MIME のメディアタイプを返します。
...MIME のメディアタイプを返します。
これは "MESSAGE" を返します。
@see Net::IMAP::BodyTypeMessage#subtype... -
OptionParser
:: ParseError # to _ s -> String (3104.0) -
標準エラーに出力するメッセージを返します。
標準エラーに出力するメッセージを返します。
@return 文字列を返します。 -
Net
:: IMAP :: BodyTypeMessage # media _ subtype -> String (3103.0) -
MIME のメディアタイプのサブタイプを返します。 media_subtype は obsolete です。
...MIME のメディアタイプのサブタイプを返します。
media_subtype は obsolete です。
@see Net::IMAP::BodyTypeMessage#media_type... -
Net
:: IMAP :: BodyTypeMessage # subtype -> String (3103.0) -
MIME のメディアタイプのサブタイプを返します。 media_subtype は obsolete です。
...MIME のメディアタイプのサブタイプを返します。
media_subtype は obsolete です。
@see Net::IMAP::BodyTypeMessage#media_type... -
Net
:: IMAP :: BodyTypeMessage # content _ id -> String | nil (3102.0) -
Content-ID の値を文字列で返します。
Content-ID の値を文字列で返します。
@see 2045