cn.featherfly.common.net.mail.SmtpMailServer Maven / Gradle / Ivy
package cn.featherfly.common.net.mail;
/**
*
* SmtpMailServer
*
*
* @author 钟冀
*/
public class SmtpMailServer extends MailServer{
/**
*/
public SmtpMailServer(String host) {
this(host, 25);
}
/**
*/
public SmtpMailServer(String host, int port) {
super(host, port, "smtp");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy