50件ヒット
[1-50件を表示]
(0.392秒)
種類
- インスタンスメソッド (33)
- 定数 (11)
- 特異メソッド (6)
クラス
-
Net
:: SMTP (50)
キーワード
- Revision (11)
- address (11)
-
capable
_ auth _ types (11) - inspect (11)
- start (6)
検索結果
先頭5件
- Net
:: SMTP # address -> String - Net
:: SMTP # capable _ auth _ types -> [String] - Net
:: SMTP # inspect -> String - Net
:: SMTP :: Revision -> String - Net
:: SMTP . start(address , port = Net :: SMTP . default _ port , tls _ verify: true , tls _ hostname: nil , helo: & # 39;localhost& # 39; , user: nil , password: nil , authtype: DEFAULT _ AUTH _ TYPE) -> Net :: SMTP
-
Net
:: SMTP # address -> String (203.0) -
接続先のアドレスを返します。
接続先のアドレスを返します。 -
Net
:: SMTP # capable _ auth _ types -> [String] (203.0) -
接続したサーバで利用可能な認証を配列で返します。
接続したサーバで利用可能な認証を配列で返します。
返り値の配列の要素は、 'PLAIN', 'LOGIN', 'CRAM-MD5' です。
このメソッドは Net::SMTP#start などでセッションを開始
した以降にしか正しい値を返しません。 -
Net
:: SMTP # inspect -> String (203.0) -
@see Object#inspect
@see Object#inspect -
Net
:: SMTP :: Revision -> String (203.0) -
ファイルのリビジョンです。使わないでください。
ファイルのリビジョンです。使わないでください。 -
Net
:: SMTP . start(address , port = Net :: SMTP . default _ port , tls _ verify: true , tls _ hostname: nil , helo: & # 39;localhost& # 39; , user: nil , password: nil , authtype: DEFAULT _ AUTH _ TYPE) -> Net :: SMTP (108.0) -
新しい SMTP オブジェクトを生成し、サーバに接続し、セッションを開始します。
...しい SMTP オブジェクトを生成し、サーバに接続し、セッションを開始します。
以下と同じです。
require 'net/smtp'
Net::SMTP.new(address, port).start(helo: helo, user: user, password: password, authtype: authtype)
このメソッドにブロックを与え......のタイプで、
シンボルで :plain, :login, :cram_md5 を指定します。
Example:
require 'net/smtp'
Net::SMTP.start('smtp.example.com') {|smtp|
smtp.send_message mail_string, 'from@example.jp', 'to@example.jp'
}
@param address 接続するサーバをホスト名もしくは... -
Net
:: SMTP . start(address , port = Net :: SMTP . default _ port , tls _ verify: true , tls _ hostname: nil , helo: & # 39;localhost& # 39; , user: nil , password: nil , authtype: DEFAULT _ AUTH _ TYPE) {|smtp| . . . } -> object (108.0) -
新しい SMTP オブジェクトを生成し、サーバに接続し、セッションを開始します。
...しい SMTP オブジェクトを生成し、サーバに接続し、セッションを開始します。
以下と同じです。
require 'net/smtp'
Net::SMTP.new(address, port).start(helo: helo, user: user, password: password, authtype: authtype)
このメソッドにブロックを与え......のタイプで、
シンボルで :plain, :login, :cram_md5 を指定します。
Example:
require 'net/smtp'
Net::SMTP.start('smtp.example.com') {|smtp|
smtp.send_message mail_string, 'from@example.jp', 'to@example.jp'
}
@param address 接続するサーバをホスト名もしくは...