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

br.com.jhonsapp.email.session.properties.ServerProperties Maven / Gradle / Ivy

Go to download

Email Dispatcher is an open source project created by Jhonys Camacho and Jhonathan Camacho to facilitate the sending of emails.

There is a newer version: 1.0.3
Show newest version
package br.com.jhonsapp.email.session.properties;

/**
 * 
 * This interface is used to standardize the keys and values ​​required for the
 * configuration of the email provider.
 * 
 * @author Jhonathan Camacho
 *
 */
public interface ServerProperties {

	/**
	 * Property file name.
	 */
	public static final String SERVER_PROPERTIES_GMAIL = "mail_gmail_config.properties";
	public static final String SERVER_PROPERTIES_HOTMAIL = "mail_hotmail_config.properties";

	/**
	 * Property file keys.
	 */
	public static final String hostKey = "mail.server.host";
	public static final String portKey = "mail.server.port";
	public static final String sslKey = "mail.enable.ssl";
	public static final String authKey = "mail.auth";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy