Skip to content

EMail

[Source]

This class represents a single EMail. It contains as fields:

  • To, Cc, Bcc values.
  • Subject
  • From
  • Array[MIMEContent val] which contains all of the text/images/attachments
class ref EMail

Constructors

create

[Source]

new iso create()
: EMail iso^

Returns


Public fields

var contents': Array[MIMEContent val] ref

[Source]


var boundary': String val

[Source]


var to': HashSet[String val, HashEq[String val] val] val

[Source]


var cc': HashSet[String val, HashEq[String val] val] val

[Source]


var bcc': HashSet[String val, HashEq[String val] val] val

[Source]


var subject': String val

[Source]


var from': String val

[Source]


Public Functions

to

[Source]

fun ref to(
  email: String val)
: None val

Parameters

Returns


cc

[Source]

fun ref cc(
  email: String val)
: None val

Parameters

Returns


bcc

[Source]

fun ref bcc(
  email: String val)
: None val

Parameters

Returns


from

[Source]

fun ref from(
  f: String val)
: None val

Parameters

Returns


subject

[Source]

fun ref subject(
  f: String val)
: None val

Parameters

Returns


clear_bodies

[Source]

fun ref clear_bodies()
: None val

Returns


html_body

[Source]

fun ref html_body(
  body: String val)
: None val

Parameters

Returns


render

[Source]

fun box render()
: String val

Returns


render_headers

[Source]

fun box render_headers()
: String val

Returns


render_bodies

[Source]

fun box render_bodies()
: String val

Returns