Package play.api.templates

Examples of play.api.templates.Html


        }
    }

    private static void sendConfirmationMail(Token token) {
        String subject =  Messages.get("mail.reset.ask.subject");
        Html message = views.html.account.confirmationMail.render(token);
        String recipient = token.email;
        Mail.Envelop envelop = new Mail.Envelop(subject, message, recipient);
        Mail.sendMail(envelop);
    }
View Full Code Here

TOP

Related Classes of play.api.templates.Html

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.