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

org.ikasan.dashboard.notification.email.EmailNotification Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package org.ikasan.dashboard.notification.email;

import java.util.List;

public class EmailNotification {

    private List recipients;
    private String subject;
    private String body;
    private boolean isHtml;

    public EmailNotification(List recipients, String subject, String body, boolean isHtml) {
        this.recipients = recipients;
        this.subject = subject;
        this.body = body;
        this.isHtml = isHtml;
    }

    public List getRecipients() {
        return recipients;
    }

    public String getSubject() {
        return subject;
    }

    public String getBody() {
        return body;
    }

    public boolean isHtml() {
        return isHtml;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy