EmailServiceDefault

A service that sends email notifications when specific events occur

Note that this default implementation requires that an implementation of Spring’s JavaMailSender is configured.

API

EmailServiceDefault.java
class EmailServiceDefault {
  void init()     (1)
  boolean isConfigured()
  boolean send(List<String> toList, List<String> ccList, List<String> bccList, String subject, String body, DataSource... attachments)
  String[] originalUnlessOverridden(List<String> original, String overrideIfAny)
  boolean notEmpty(String[] addresses)
}
1 init()

Loads responsive email templates borrowed from http://zurb.com/ink/templates.php (Basic)

Members

init()

Loads responsive email templates borrowed from http://zurb.com/ink/templates.php (Basic)