class DocomoWebMailer::Mailsummary
メールのサマリ。一覧表示などに使う 主なプロパティーに次の値がある
- bytes
-
メールのバイト数
- mailheaders
-
メールのヘッダ(Mailheadersクラス)
- uid
-
ユニークid
- versionid
-
用途不明
- attachments
-
添付ファイル名のリスト
- created
-
受信日(エポック秒)
Public Class Methods
new(data)
click to toggle source
Calls superclass method
DocomoWebMailer::RHash::new
# File lib/docomo_web_mailer.rb, line 292 def initialize(data) super end
Public Instance Methods
mailheaders()
click to toggle source
メールのヘッダ(Mailheadersクラス)
# File lib/docomo_web_mailer.rb, line 296 def mailheaders @data["mailheaders"] end
method_missing(sym, *args, &block)
click to toggle source
# File lib/docomo_web_mailer.rb, line 299 def method_missing(sym, *args, &block) if @data.has_key? sym.to_s @data[sym.to_s] elsif mailheaders.has_key? sym.to_s mailheaders[sym.to_s] end end