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

net.israfil.service.mail.api.smtp.header.SMTPStringHeader Maven / Gradle / Ivy

The newest version!
package net.israfil.service.mail.api.smtp.header;




public class SMTPStringHeader extends AbstractSMTPHeader {
	
	public SMTPStringHeader(String name, String content) {
		super(name,content);
	}

	public String getStringRepresentation() {
		return this.getContent();
	}

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy