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

io.rocketbase.commons.config.EmailProperties Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
package io.rocketbase.commons.config;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties(prefix = "auth.email")
public class EmailProperties {

    private String subjectPrefix = "[Auth]";
    private String serviceName = "commons-auth";
    private String supportEmail = "support@localhost";
    private String fromEmail = "no-reply@localhost";
    private String copyrightName = "commons-auth";
    private String copyrightUrl = "https://github.com/rocketbase-io/commons-auth";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy