class Eml2Html::Attachment

Attributes

cid[R]
content[R]
name[R]

Public Class Methods

new(cid, name, content) click to toggle source
# File lib/eml2html/converter.rb, line 7
def initialize(cid, name, content)
  @cid, @name, @content = cid, name, content
end