object Mailer extends Mailer
Utilities for sending email.
- Alphabetic
- By Inheritance
- Mailer
- Mailer
- SimpleInjector
- Injector
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed abstract class AddressType extends RoutingType
- final case class BCC(address: String, name: Box[String] = Empty) extends AddressType with Product with Serializable
- final case class CC(address: String, name: Box[String] = Empty) extends AddressType with Product with Serializable
- final case class From(address: String, name: Box[String] = Empty) extends AddressType with Product with Serializable
- abstract class MailBodyType extends MailTypes
- sealed abstract class MailTypes extends AnyRef
- final case class MessageHeader(name: String, value: String) extends MailTypes with Product with Serializable
Add message headers to outgoing messages
- final case class MessageInfo(from: From, subject: Subject, info: List[MailTypes]) extends Product with Serializable
- class MsgSender extends SpecializedLiftActor[MessageInfo]
- Attributes
- protected
- Definition Classes
- Mailer
- final case class PlainMailBodyType(text: String) extends MailBodyType with Product with Serializable
Represents a text/plain mail body.
Represents a text/plain mail body. The given text will be encoded as UTF-8 when sent.
- final case class PlainPlusBodyType(text: String, charset: String) extends MailBodyType with Product with Serializable
Represents a text/plain mail body that is encoded with the specified charset
- final case class PlusImageHolder(name: String, mimeType: String, bytes: Array[Byte], attachment: Boolean = false) extends Product with Serializable
- final case class ReplyTo(address: String, name: Box[String] = Empty) extends AddressType with Product with Serializable
- sealed abstract class RoutingType extends MailTypes
- final case class Subject(subject: String) extends RoutingType with Product with Serializable
- final case class To(address: String, name: Box[String] = Empty) extends AddressType with Product with Serializable
- final case class XHTMLMailBodyType(text: NodeSeq) extends MailBodyType with Product with Serializable
- final case class XHTMLPlusImages(text: NodeSeq, items: PlusImageHolder*) extends MailBodyType with Product with Serializable
- abstract class Inject[T] extends StackableMaker[T] with Vendor[T]
Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.
Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.
- Definition Classes
- SimpleInjector
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
- implicit def adListToAdArray(in: List[AddressType]): Array[Address]
- Definition Classes
- Mailer
- implicit def addressToAddress(in: AddressType): Address
- Definition Classes
- Mailer
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val authenticator: Box[Authenticator]
Passwords cannot be accessed via System.getProperty.
Passwords cannot be accessed via System.getProperty. Instead, we provide a means of explicitlysetting the authenticator.
- Definition Classes
- Mailer
- def blockingSendMail(from: From, subject: Subject, rest: MailTypes*): Unit
Synchronously send an email.
Synchronously send an email.
- Definition Classes
- Mailer
- def buildMailBody(tab: MailBodyType): BodyPart
Given a MailBodyType, convert it to a javax.mail.BodyPart.
Given a MailBodyType, convert it to a javax.mail.BodyPart. You can override this method if you add custom MailBodyTypes
- Attributes
- protected
- Definition Classes
- Mailer
- def buildProps: Properties
- Definition Classes
- Mailer
- lazy val charSet: String
Set the mail.charset property to something other than UTF-8 for non-UTF-8 mail.
Set the mail.charset property to something other than UTF-8 for non-UTF-8 mail.
- Definition Classes
- Mailer
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val customProperties: Map[String, String]
Custom properties for the JNDI session
Custom properties for the JNDI session
- Definition Classes
- Mailer
- lazy val devModeSend: Inject[(MimeMessage) => Unit]
How to send a message in dev mode.
How to send a message in dev mode. By default, use Transport.send(msg)
- Definition Classes
- Mailer
- def encodeHtmlBodyPart(in: NodeSeq): String
The default mechanism for encoding a NodeSeq to a String representing HTML.
The default mechanism for encoding a NodeSeq to a String representing HTML. By default, use Html5.toString(node)
- Attributes
- protected
- Definition Classes
- Mailer
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def firstNode(in: NodeSeq): Node
- Attributes
- protected
- Definition Classes
- Mailer
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def host: String
The host that should be used to send mail.
The host that should be used to send mail.
- Definition Classes
- Mailer
- val hostFunc: () => String
To change the way the host is calculated, set this to the function that calcualtes the host name.
To change the way the host is calculated, set this to the function that calcualtes the host name. By default: System.getProperty("mail.smtp.host")
- Definition Classes
- Mailer
- implicit def inject[T](implicit man: Manifest[T]): Box[T]
Perform the injection for the given type.
Perform the injection for the given type. You can call: inject[Date] or inject[List[Map[String, PaymentThing]]]. The appropriate Manifest will be
- Definition Classes
- SimpleInjector → Injector
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val jndiName: Box[String]
Use the mailer resource in your container by specifying the JNDI name
Use the mailer resource in your container by specifying the JNDI name
- Definition Classes
- Mailer
- lazy val jndiSession: Box[Session]
- Definition Classes
- Mailer
- def msgSendImpl(from: From, subject: Subject, info: List[MailTypes]): Unit
- Definition Classes
- Mailer
- lazy val msgSender: MsgSender
- Attributes
- protected
- Definition Classes
- Mailer
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def performTransportSend(msg: MimeMessage): Unit
- Attributes
- protected
- Definition Classes
- Mailer
- lazy val pilotModeSend: Inject[(MimeMessage) => Unit]
How to send a message in pilot mode.
How to send a message in pilot mode. By default, use Transport.send(msg)
- Definition Classes
- Mailer
- lazy val productionModeSend: Inject[(MimeMessage) => Unit]
How to send a message in production mode.
How to send a message in production mode. By default, use Transport.send(msg)
- Definition Classes
- Mailer
- lazy val profileModeSend: Inject[(MimeMessage) => Unit]
How to send a message in profile mode.
How to send a message in profile mode. By default, use Transport.send(msg)
- Definition Classes
- Mailer
- lazy val properties: Properties
- Definition Classes
- Mailer
- def registerInjection[T](f: () => T)(implicit man: Manifest[T]): Unit
Register a function that will inject for the given Manifest
Register a function that will inject for the given Manifest
- Definition Classes
- SimpleInjector
- def sendMail(from: From, subject: Subject, rest: MailTypes*): Unit
Asynchronously send an email.
Asynchronously send an email.
- Definition Classes
- Mailer
- lazy val stagingModeSend: Inject[(MimeMessage) => Unit]
How to send a message in staging mode.
How to send a message in staging mode. By default, use Transport.send(msg)
- Definition Classes
- Mailer
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- lazy val testModeSend: Inject[(MimeMessage) => Unit]
How to send a message in test mode.
How to send a message in test mode. By default, log the message
- Definition Classes
- Mailer
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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]) @native()
- implicit def xmlToMailBodyType(html: NodeSeq): MailBodyType
- Definition Classes
- Mailer