nyla.solutions.global.net.email.SendMail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.global Show documentation
Show all versions of nyla.solutions.global Show documentation
Nyla Solutions Global Java API provides support for basic application
utilities (application configuration, data encryption, debugger and text
processing).
The newest version!
package nyla.solutions.global.net.email;
public interface SendMail
{
/**
*
* Sending out E-mails through SMTP E-mail server.
*
* From the system
*
* @param aTo
* E-mail TO: field in Internet E-mail address format. If there are
* more than one E-mail addresses, separate them by
* SysConst.EMAIL_DELIMITER_IND.
*
* @param aFrom from address
*
* @param aSubject E-mail subject line.
*
* @param aMessageBody E-mail body.
*
*/
public void sendMail(String aTo,
String aFrom,
String aSubject,
String aMessageBody)
throws Exception;
}