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

io.continual.email.TextService Maven / Gradle / Ivy

package io.continual.email;

import java.io.IOException;

public interface TextService
{
	interface SmsBuilder
	{
		SmsBuilder to ( String phoneNumber );
		SmsBuilder withBody ( String body );
	}

	SmsBuilder createMessage ();
	
	void sendMessage ( SmsBuilder msg ) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy