![JAR search and dependency download from the Maven repository](/logo.png)
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