| Package | Description |
|---|---|
| eu.easyrpa.openframework.email |
Functionality for working with email messages within RPA process.
|
| eu.easyrpa.openframework.email.service.javax |
Implementation of email services based on
javax.mail functionality (SMTP, IMAP and POP3 protocols). |
| Modifier and Type | Field and Description |
|---|---|
protected EmailAddress |
EmailMessage.from
Email address displayed in the filed
From: of this email message. |
protected EmailAddress |
EmailMessage.sender
Email address of the actual sender of this email message that corresponds to email account on behalf of which
this message is sent.
|
| Modifier and Type | Field and Description |
|---|---|
protected List<EmailAddress> |
EmailMessage.bccRecipients
List of email addresses who are BCC recipients of this email message.
|
protected List<EmailAddress> |
EmailMessage.ccRecipients
List of email addresses who are CC recipients of this email message.
|
protected List<EmailAddress> |
EmailMessage.recipients
List of email addresses who are recipients of this email message.
|
protected List<EmailAddress> |
EmailMessage.replyTo
List of email addresses who are supposed recipients of the replying on this email message.
|
| Modifier and Type | Method and Description |
|---|---|
EmailAddress |
EmailMessage.getFrom()
Gets email address displayed in the field
From: of this email message. |
EmailAddress |
EmailMessage.getSender()
Gets email address of the actual sender of this email message.
|
| Modifier and Type | Method and Description |
|---|---|
List<EmailAddress> |
EmailMessage.getBccRecipients()
Gets list of email addresses who are BCC recipients of this email message.
|
List<EmailAddress> |
EmailMessage.getCcRecipients()
Gets list of email addresses who are CC recipients of this email message.
|
List<EmailAddress> |
EmailMessage.getRecipients()
Gets list of email addresses who are recipients of this email message.
|
List<EmailAddress> |
EmailMessage.getReplyTo()
Gets list of email addresses who are supposed recipients of the replying on this email message.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EmailMessage.setFrom(EmailAddress from)
Sets explicitly the email address displayed in the field
From: of this email message. |
void |
EmailMessage.setSender(EmailAddress sender)
Sets the email address of the actual sender of this email message.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EmailMessage.setBccRecipients(List<EmailAddress> recipientsList)
Sets explicitly the list of email addresses who are BCC recipients of this email message.
|
void |
EmailMessage.setCcRecipients(List<EmailAddress> recipientsList)
Sets explicitly the list of email addresses who are CC recipients of this email message.
|
void |
EmailMessage.setRecipients(List<EmailAddress> recipientsList)
Sets explicitly the list of email addresses who are recipients of this email message.
|
void |
EmailMessage.setReplyTo(List<EmailAddress> recipientsList)
Sets explicitly the list of email addresses who are supposed recipients of the replying on this email message.
|
| Modifier and Type | Method and Description |
|---|---|
EmailAddress |
MimeMessageWrapper.getFrom() |
EmailAddress |
MimeMessageWrapper.getSender() |
| Modifier and Type | Method and Description |
|---|---|
List<EmailAddress> |
MimeMessageWrapper.getBccRecipients() |
List<EmailAddress> |
MimeMessageWrapper.getCcRecipients() |
List<EmailAddress> |
MimeMessageWrapper.getRecipients() |
List<EmailAddress> |
MimeMessageWrapper.getReplyTo() |
| Modifier and Type | Method and Description |
|---|---|
void |
MimeMessageWrapper.setFrom(EmailAddress from) |
void |
MimeMessageWrapper.setSender(EmailAddress sender) |
| Modifier and Type | Method and Description |
|---|---|
void |
MimeMessageWrapper.setBccRecipients(List<EmailAddress> recipientsList) |
void |
MimeMessageWrapper.setCcRecipients(List<EmailAddress> recipientsList) |
void |
MimeMessageWrapper.setRecipients(List<EmailAddress> recipientsList) |
void |
MimeMessageWrapper.setReplyTo(List<EmailAddress> recipientsList) |
Copyright © 2023. All rights reserved.