in log4j-jakarta-smtp/src/main/java/org/apache/logging/log4j/smtp/appender/SmtpManager.java [336:365]
public FactoryData(
final String to,
final String cc,
final String bcc,
final String from,
final String replyTo,
final Serializer subjectSerializer,
final String protocol,
final String host,
final int port,
final String username,
final String password,
final boolean isDebug,
final int numElements,
final SslConfiguration sslConfiguration) {
this.to = to;
this.cc = cc;
this.bcc = bcc;
this.from = from;
this.replyto = replyTo;
this.subject = subjectSerializer;
this.protocol = protocol;
this.host = host;
this.port = port;
this.username = username;
this.password = password;
this.isDebug = isDebug;
this.numElements = numElements;
this.sslConfiguration = sslConfiguration;
}