![JAR search and dependency download from the Maven repository](/logo.png)
net.israfil.service.mail.api.smtp.header.SMTPAddressHeader Maven / Gradle / Ivy
The newest version!
package net.israfil.service.mail.api.smtp.header;
import net.israfil.service.mail.api.smtp.SMTPAddress;
public class SMTPAddressHeader extends AbstractSMTPHeader {
public SMTPAddressHeader(String name, SMTPAddress content) {
super(name,content);
}
public String getStringRepresentation() {
return this.getContent().getCanonicalAddress();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy