1- Create a new play application in scala
> play new background-email2- Let's set the Global object location for our project. In your background-email/conf/application.conf file, make sure you have the following set:
application.global=GlobalThis will tell Play where to look for the Global object class of our application.
3- Under background-email/app/ create Global.scala. This file is loaded at application start time and the onStart method is where we can add calls to schedule tasks. In the example below, we'll have onStart call startAwesomeBackgroundTask which will schedule periodic email sends. Note: If you want this example to work, create a gmail account and replace "user@gmail.com" with your username and "password" with a the real password.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.mail.Message.RecipientType | |
import org.codemonkey.simplejavamail.{TransportStrategy, Mailer, Email} | |
import play.api._ | |
import play.api.Play.current | |
import play.api.libs.concurrent._ | |
import play.api.libs.concurrent.Execution.Implicits._ | |
import scala.concurrent.duration._ | |
object Global extends GlobalSettings { | |
override def onStart(app: Application) { | |
Logger.info("Application has started") | |
startAwesomeBackgroundTask | |
} | |
override def onStop(app: Application) { | |
Logger.info("Application shutdown...") | |
} | |
def startAwesomeBackgroundTask = { | |
Akka.system.scheduler.schedule(0 seconds, 5 seconds) { | |
val email = new Email() | |
email.setFromAddress("FooBar Daemon", "no-reply@gmail.com"); | |
email.setSubject("Alert!"); | |
email.addRecipient("Foo Bar", "foo.bar@gmail.com", RecipientType.TO); | |
email.setTextHTML("<img src='cid:wink1'><b>There was an alert!</b><img src='cid:wink2'>"); | |
new Mailer("smtp.gmail.com", 465, "user@gmail.com", "password", TransportStrategy.SMTP_SSL).sendMail(email); | |
} | |
} | |
} |
4- Before we can run our code, we'll need to add the right dependencies to our project. Update background-email/project/Build.scala to include a reference to org.codemonkey.simplejavamail:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sbt._ | |
import Keys._ | |
import play.Project._ | |
object ApplicationBuild extends Build { | |
val appName = "chain-mail" | |
val appVersion = "1.0-SNAPSHOT" | |
val appDependencies = Seq( | |
"org.codemonkey.simplejavamail" % "simple-java-mail" % "2.1" | |
) | |
val main = play.Project(appName, appVersion, appDependencies).settings( | |
// Add your own project settings here | |
) | |
} |
> play start
Voila! From the console output you should be seeing an email sent every 5 seconds. The proof is in the pudding:
*The above instructions work as of Play 2.1.2.