![JAR search and dependency download from the Maven repository](/logo.png)
io.github.ilyalisov.mail.config.PlainMailConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-mail Show documentation
Show all versions of spring-boot-starter-mail Show documentation
Mail service for Spring Boot applications.
package io.github.ilyalisov.mail.config;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
@Builder
@AllArgsConstructor
@Getter
public class PlainMailConfiguration implements MailConfiguration {
/**
* Subject of email.
*/
private String subject;
@Override
public String getTemplateFileName() {
return null;
}
@Override
public boolean isHtml() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy