Packages

case class Envelope(from: InternetAddress, _subject: Option[(String, Option[Charset])] = None, _to: Seq[InternetAddress] = Seq.empty[InternetAddress], _cc: Seq[InternetAddress] = Seq.empty[InternetAddress], _bcc: Seq[InternetAddress] = Seq.empty[InternetAddress], _replyTo: Option[InternetAddress] = None, _replyToAll: Option[Boolean] = None, _headers: Seq[(String, String)] = Seq.empty[(String, String)], _content: Content = Text("")) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Envelope
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Envelope(from: InternetAddress, _subject: Option[(String, Option[Charset])] = None, _to: Seq[InternetAddress] = Seq.empty[InternetAddress], _cc: Seq[InternetAddress] = Seq.empty[InternetAddress], _bcc: Seq[InternetAddress] = Seq.empty[InternetAddress], _replyTo: Option[InternetAddress] = None, _replyToAll: Option[Boolean] = None, _headers: Seq[(String, String)] = Seq.empty[(String, String)], _content: Content = Text(""))

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _bcc: Seq[InternetAddress]
  5. val _cc: Seq[InternetAddress]
  6. val _content: Content
  7. val _headers: Seq[(String, String)]
  8. val _replyTo: Option[InternetAddress]
  9. val _replyToAll: Option[Boolean]
  10. val _subject: Option[(String, Option[Charset])]
  11. val _to: Seq[InternetAddress]
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def bcc: Seq[InternetAddress]
  14. def bcc(addrs: InternetAddress*): Envelope
  15. def cc: Seq[InternetAddress]
  16. def cc(addrs: InternetAddress*): Envelope
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  18. def content(c: Content): Envelope
  19. def contents: Content
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. val from: InternetAddress
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  23. def headers: Seq[(String, String)]
  24. def headers(hdrs: (String, String)*): Envelope
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  29. def productElementNames: Iterator[String]
    Definition Classes
    Product
  30. def replyAll: Envelope
  31. def replyTo: Option[InternetAddress]
  32. def replyTo(addr: InternetAddress): Envelope
  33. def subject: Option[(String, Option[Charset])]
  34. def subject(s: String, ch: Charset): Envelope
  35. def subject(s: String): Envelope
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def to: Seq[InternetAddress]
  38. def to(addrs: InternetAddress*): Envelope
  39. def too(addrs: Seq[InternetAddress]): Envelope
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def recipients: Seq[InternetAddress]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.1) use to instead

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped