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

com.moon.core.mail.EmailHosts Maven / Gradle / Ivy

package com.moon.core.mail;

/**
 * @author moonsky
 */
public enum EmailHosts {
    QQ("imap.qq.com", "smtp.qq.com"),
    ;

    private final String inboxHost;
    private final String sendHost;

    EmailHosts(String inboxHost, String sendHost) {
        this.inboxHost = inboxHost;
        this.sendHost = sendHost;
    }

    public String getInboxHost() { return inboxHost; }

    public String getSendHost() { return sendHost; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy