Package | Description |
---|---|
com.smartfoxserver.v2.entities | |
com.smartfoxserver.v2.entities.managers |
Modifier and Type | Class and Description |
---|---|
class |
SFSEmail
The class represent an email message in either plain text or valid HTML format that can be sent
via the mail service provided by the SmartFoxServer class.
|
Modifier and Type | Method and Description |
---|---|
void |
IMailerCallbackHandler.onError(Email email,
java.lang.Exception e) |
void |
IMailerCallbackHandler.onSuccess(Email email) |
void |
IMailerService.sendMail(Email email)
Sends the email to the recipient, or list of recipients, specified in the Email argument.
|
void |
SFSPostOffice.sendMail(Email email)
Sends the email to the recipient, or list of recipients, specified in the Email argument.
|
void |
IMailerService.sendMail(Email email,
IMailerCallbackHandler callBack)
Sends the email to the recipient, or list of recipients, specified in the Email argument and get an asynchronous event when
the email is delivered.
|
void |
SFSPostOffice.sendMail(Email email,
IMailerCallbackHandler callBack)
Sends the email to the recipient, or list of recipients, specified in the Email argument and get an asynchronous event when
the email is delivered.
|
void |
IMailerService.sendMail(Email email,
IMailerCallbackHandler callBack,
int delaySeconds)
Sends an email in the future.
|
void |
SFSPostOffice.sendMail(Email email,
IMailerCallbackHandler callBack,
int delaySeconds)
Sends an email in the future.
|