struct SimpleEmail::Message
- SimpleEmail::Message
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
Defined in:
simple-email/message.crConstructors
- .new(pull : JSON::PullParser)
- .new(created : Time = Time.utc, from : String = "", to : Set(String) = Set(String).new, subj : String = "", body : String = "")
Instance Method Summary
- #body : String
- #body=(body : String)
- #created : Time
- #created=(created : Time)
- #from : String
- #from=(from : String)
- #subj : String
- #subj=(subj : String)
- #to : Set(String)
- #to=(to : Set(String))
Constructor Detail
def self.new(created : Time = Time.utc, from : String = "", to : Set(String) = Set(String).new, subj : String = "", body : String = "")
#