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
Ordering
- Alphabetic
- By Inheritance
Inherited
- Envelope
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val _bcc: Seq[InternetAddress]
- val _cc: Seq[InternetAddress]
- val _content: Content
- val _headers: Seq[(String, String)]
- val _replyTo: Option[InternetAddress]
- val _replyToAll: Option[Boolean]
- val _subject: Option[(String, Option[Charset])]
- val _to: Seq[InternetAddress]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bcc: Seq[InternetAddress]
- def bcc(addrs: InternetAddress*): Envelope
- def cc: Seq[InternetAddress]
- def cc(addrs: InternetAddress*): Envelope
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def content(c: Content): Envelope
- def contents: Content
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val from: InternetAddress
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def headers: Seq[(String, String)]
- def headers(hdrs: (String, String)*): Envelope
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def replyAll: Envelope
- def replyTo: Option[InternetAddress]
- def replyTo(addr: InternetAddress): Envelope
- def subject: Option[(String, Option[Charset])]
- def subject(s: String, ch: Charset): Envelope
- def subject(s: String): Envelope
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def to: Seq[InternetAddress]
- def to(addrs: InternetAddress*): Envelope
- def too(addrs: Seq[InternetAddress]): Envelope
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])