net.liftweb.util

Mailer

trait Mailer extends SimpleInjector

This trait implmenets the mail sending. You can create subclasses of this class/trait and implement your own mailer functionality

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Mailer
  2. SimpleInjector
  3. Injector
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. 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.

  2. class MsgSender extends SpecializedLiftActor[MessageInfo]

    Attributes
    protected

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. implicit def adListToAdArray(in: List[AddressType]): Array[Address]

  7. implicit def addressToAddress(in: AddressType): Address

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. var authenticator: Box[Authenticator]

    Passwords cannot be accessed via System.

    Passwords cannot be accessed via System.getProperty. Instead, we provide a means of explicitlysetting the authenticator.

  10. def blockingSendMail(from: From, subject: Subject, rest: MailTypes*): Unit

    Synchronously send an email.

  11. def buildMailBody(tab: MailBodyType): BodyPart

    Given a MailBodyType, convert it to a javax.

    Given a MailBodyType, convert it to a javax.mail.BodyPart. You can override this method if you add custom MailBodyTypes

    Attributes
    protected
  12. def buildProps: Properties

  13. lazy val charSet: String

    Set the mail.

    Set the mail.charset property to something other than UTF-8 for non-UTF-8 mail.

  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. var customProperties: Map[String, String]

    Custom properties for the JNDI session

  16. 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)

  17. 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
  18. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def firstNode(in: NodeSeq): Node

    Attributes
    protected
  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  24. def host: String

    The host that should be used to send mail.

  25. var 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")

  26. 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
    SimpleInjectorInjector
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. var jndiName: Box[String]

    Use the mailer resource in your container by specifying the JNDI name

  29. lazy val jndiSession: Box[Session]

  30. def msgSendImpl(from: From, subject: Subject, info: List[MailTypes]): Unit

  31. lazy val msgSender: MsgSender

    Attributes
    protected
  32. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  35. def performTransportSend(msg: MimeMessage): Unit

    Attributes
    protected
  36. 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)

  37. 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)

  38. 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)

  39. lazy val properties: Properties

  40. 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
  41. def sendMail(from: From, subject: Subject, rest: MailTypes*): Unit

    Asynchronously send an email.

  42. 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)

  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  44. 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

  45. def toString(): String

    Definition Classes
    AnyRef → Any
  46. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. implicit def xmlToMailBodyType(html: NodeSeq): MailBodyType

Inherited from SimpleInjector

Inherited from Injector

Inherited from AnyRef

Inherited from Any

Ungrouped