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

cc.kebei.expands.request.email.EmailMessage Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package cc.kebei.expands.request.email;

import java.io.InputStream;

public interface EmailMessage {
    EmailMessage from(String from);

    EmailMessage to(String to, String... more);

    EmailMessage subject(String sub);

    EmailMessage content(String content, String contentType);

    EmailMessage addImage(String id, InputStream inputStream);

    EmailMessage addAttach(String name, InputStream inputStream);

    EmailResponse send();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy