All Downloads are FREE. Search and download functionalities are using the official Maven repository.

woko.mail.ConsoleMailService Maven / Gradle / Ivy

There is a newer version: 2.4-beta7
Show newest version
package woko.mail;

import woko.Woko;

import java.util.Locale;
import java.util.Map;

public class ConsoleMailService extends MailServiceBase {

    public ConsoleMailService(String appUrl, String fromEmailAddress, Map templates) {
        super(appUrl, fromEmailAddress, templates);
    }

    @Override
    public void sendMail(Woko woko, String to, Locale locale, MailTemplate template, Map binding) {
        System.out.println("FAKE Sending email from " + getFromEmailAddress() +
                " to " + to +
                ",subject : " + template.processSubject(woko, locale, binding) +
                "\n, text :\n" + template.processBody(woko, locale, binding));
    }
}






© 2015 - 2025 Weber Informatics LLC | Privacy Policy