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

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