132件ヒット
[101-132件を表示]
(0.076秒)
ライブラリ
-
net
/ pop (132)
クラス
-
Net
:: POP3 (24) -
Net
:: POPMail (108)
検索結果
先頭3件
-
Net
:: POPMail # pop -> String (25.0) -
メールを受信します。
...'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}
ブロックを利用する例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|... -
Net
:: POPMail # pop {|str| . . . . } -> nil (25.0) -
メールを受信します。
...'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}
ブロックを利用する例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|... -
Net
:: POPMail # pop(io) -> object (25.0) -
メールを受信します。
...'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}
ブロックを利用する例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|...