| Package | Description |
|---|---|
| de.aristaflow.adept2.base.mail | |
| de.aristaflow.adept2.base.mailservice | |
| de.aristaflow.adept2.core.mailservice | |
| de.aristaflow.adept2.model.mail |
| Modifier and Type | Method and Description |
|---|---|
static SerialisedEmail |
EmailToolkit.sendMail(java.lang.String from,
java.lang.String[] to,
java.lang.String[] cc,
java.lang.String[] bcc,
java.lang.String subject,
java.lang.String body,
java.util.List<SerialisableAttachment> attachments,
java.lang.String hostname)
Deprecated.
This method allows the usage of a host differing from the default host.
|
static SerialisedEmail |
EmailToolkit.sendMail(java.lang.String from,
java.lang.String[] to,
java.lang.String[] cc,
java.lang.String[] bcc,
java.lang.String subject,
java.lang.String body,
java.util.List<SerialisableAttachment> attachments,
java.lang.String hostname,
int hostport,
boolean useTLS,
boolean useSSL,
boolean overtrustful)
Deprecated.
This method allows the usage of a host differing from the default host.
|
static SerialisedEmail |
EmailToolkit.sendMail(java.lang.String from,
java.lang.String[] to,
java.lang.String[] cc,
java.lang.String[] bcc,
java.lang.String subject,
java.lang.String body,
java.util.List<SerialisableAttachment> attachments,
java.lang.String hostname,
int hostport,
java.lang.String username,
java.lang.String password,
boolean useTLS,
boolean useSSL,
boolean overtrustful)
Deprecated.
This method allows the usage of a host differing from the default host that
also needs a username and a password.
|
static SerialisedEmail |
EmailToolkit.sendMail(java.lang.String from,
java.lang.String[] to,
java.lang.String[] cc,
java.lang.String[] bcc,
java.lang.String subject,
java.lang.String body,
java.util.List<SerialisableAttachment> attachments,
java.lang.String hostname,
int hostport,
java.lang.String username,
java.lang.String password,
boolean useTLS,
boolean useSSL,
boolean overtrustful,
java.util.Map<java.lang.String,java.lang.String> addAttributes)
Deprecated.
This method allows the usage of a host differing from the default host that
also needs a username and a password.
|
| Modifier and Type | Method and Description |
|---|---|
EmailResult |
MailService.sendMail(SessionToken session,
java.lang.String from,
java.util.List<java.lang.String> to,
java.util.List<java.lang.String> cc,
java.util.List<java.lang.String> bcc,
java.lang.String subject,
java.lang.String body,
java.util.List<SerialisableAttachment> attachments,
java.util.Map<java.lang.String,java.lang.String> addAttributes,
boolean allowAsyncRetry)
Sends a mail to the designated recipients having the designated sender,
subject and body.
|
| Modifier and Type | Method and Description |
|---|---|
EmailResult |
MailService.sendMail(SessionToken session,
java.lang.String from,
java.util.List<java.lang.String> to,
java.util.List<java.lang.String> cc,
java.util.List<java.lang.String> bcc,
java.lang.String subject,
java.lang.String body,
java.util.List<SerialisableAttachment> attachments,
java.util.Map<java.lang.String,java.lang.String> addAttributes,
boolean allowAsyncRetry)
Sends a mail to the designated recipients having the designated sender,
subject and body.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ByteArrayAttachment
A
SerialisableAttachment having plain byte[]
content. |
class |
DataSourceAttachment
A
SerialisableAttachment having a datasource as content. |
class |
UDTAttachment
A
SerialisableAttachment having an UDTValue as
content. |
class |
URLAttachment
A
SerialisableAttachment providing a URL for the
content. |
| Modifier and Type | Field and Description |
|---|---|
protected SerialisableAttachment |
SerialisableAttachmentDataSource.att
The wrapped serialisable attachment.
|
| Constructor and Description |
|---|
SerialisableAttachmentDataSource(SerialisableAttachment att)
Creates a new wrapper for a
SerialisableAttachment. |