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

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