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

com.stormpath.sdk.mail.EmailService Maven / Gradle / Ivy

Go to download

The Stormpath Java SDK API .jar provides a Java API that your code can use to make calls to the Stormpath API. This .jar is the only compile-time dependency within the Stormpath SDK project that your code should depend on. Implementations of this API (implementation .jars) should be runtime dependencies only.

The newest version!
package com.stormpath.sdk.mail;

/**
 *
 */
public interface EmailService {

    /**
     * Sends an email based on an EmailRequest based on a template.
     * 

Implementation note: the {@code template} argument is typically used as template name, * but this is up to the implementation.

* @param request email request info * @param template template to be used by the EmailService implementation */ void sendEmail(EmailRequest request, String template); void sendValidationEmail(EmailRequest request); void sendResetEmail(EmailRequest request); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy