- EmailAddress - Class in eu.easyrpa.openframework.email.message
-
Represents specific email address.
- EmailAddress(String, String) - Constructor for class eu.easyrpa.openframework.email.message.EmailAddress
-
Constructs a new EmailAddress.
- EmailAddress(String) - Constructor for class eu.easyrpa.openframework.email.message.EmailAddress
-
Constructs a new EmailAddress.
- EmailAttachment - Class in eu.easyrpa.openframework.email.message
-
Represents email attachment.
- EmailAttachment(String, InputStream, String) - Constructor for class eu.easyrpa.openframework.email.message.EmailAttachment
-
Constructs a mew EmailAttachment with provided file data.
- EmailAttachment(Path) - Constructor for class eu.easyrpa.openframework.email.message.EmailAttachment
-
Constructs a mew EmailAttachment with given file.
- EmailAttachment(String, byte[], String) - Constructor for class eu.easyrpa.openframework.email.message.EmailAttachment
-
Constructs a mew EmailAttachment with provided file data.
- EmailBodyPart - Class in eu.easyrpa.openframework.email.message
-
Represents a part of email message body with specific content type.
- EmailBodyPart(String, String) - Constructor for class eu.easyrpa.openframework.email.message.EmailBodyPart
-
Constructs a new email body part.
- EmailClient - Class in eu.easyrpa.openframework.email
-
This is an email client service that provides functionality for working with mailbox folders and email
messages in them.
- EmailClient() - Constructor for class eu.easyrpa.openframework.email.EmailClient
-
Default constructor of this EmailClient.
- EmailClient(RPAServicesAccessor) - Constructor for class eu.easyrpa.openframework.email.EmailClient
-
Constructs EmailClient with provided RPAServicesAccessor.
- EmailConfigParam - Class in eu.easyrpa.openframework.email.constants
-
The list of configuration parameter names which can be specified within RPA platform to provide necessary
for working with mailbox and email messages information.
- EmailMessage - Class in eu.easyrpa.openframework.email
-
Represents specific email message and provides functionality to work with its parameters and content.
- EmailMessage() - Constructor for class eu.easyrpa.openframework.email.EmailMessage
-
Constructs a new instance of EmailMessage with default type name.
- EmailMessage(String) - Constructor for class eu.easyrpa.openframework.email.EmailMessage
-
Constructs a new instance of EmailMessage with given type name.
- EmailMessage(EmailSender) - Constructor for class eu.easyrpa.openframework.email.EmailMessage
-
Constructs a new instance of EmailMessage with default type name and providing of email sender.
- EmailMessage(String, EmailSender) - Constructor for class eu.easyrpa.openframework.email.EmailMessage
-
Constructs a new instance of EmailMessage with given type name and providing of email sender.
- EmailMessagingException - Exception in eu.easyrpa.openframework.email.exception
-
Runtime exception that is thrown in case of some errors or problems during working with mailbox or email messages.
- EmailMessagingException(String) - Constructor for exception eu.easyrpa.openframework.email.exception.EmailMessagingException
-
Constructs a new EmailMessagingException with given detail message.
- EmailMessagingException(Throwable) - Constructor for exception eu.easyrpa.openframework.email.exception.EmailMessagingException
-
Constructs a new EmailMessagingException with given cause.
- EmailMessagingException(String, Throwable) - Constructor for exception eu.easyrpa.openframework.email.exception.EmailMessagingException
-
Constructs a new EmailMessagingException with given detail message and cause.
- EmailParsingUtils - Class in eu.easyrpa.openframework.email.utils
-
Utility for serialization/deserialization of email messages into text files of different formats.
- EmailParsingUtils() - Constructor for class eu.easyrpa.openframework.email.utils.EmailParsingUtils
-
- emailSender - Variable in class eu.easyrpa.openframework.email.EmailMessage
-
Link to the
EmailSender that can be used for sending of this email message using method
EmailMessage.send()
and retrieving of parameters that are not specified explicitly.
- EmailSender - Class in eu.easyrpa.openframework.email
-
This is an email service that provides functionality for sending of messages.
- EmailSender() - Constructor for class eu.easyrpa.openframework.email.EmailSender
-
Default constructor of this EmailSender.
- EmailSender(RPAServicesAccessor) - Constructor for class eu.easyrpa.openframework.email.EmailSender
-
Constructs EmailSender with provided RPAServicesAccessor.
- EmailServiceFactory - Class in eu.easyrpa.openframework.email.service
-
Singleton implementation of factory to build inbound/outbound email services intended to work with specific
inbound/outbound email protocols.
- EmailServiceSecret - Class in eu.easyrpa.openframework.email.service
-
Keeps secret information for establishing connection with email server.
- EmailServiceSecret() - Constructor for class eu.easyrpa.openframework.email.service.EmailServiceSecret
-
- EmailServiceSecret(String, String) - Constructor for class eu.easyrpa.openframework.email.service.EmailServiceSecret
-
- equals(Object) - Method in class eu.easyrpa.openframework.email.message.EmailAddress
-
- equals(Object) - Method in class eu.easyrpa.openframework.email.message.EmailBodyPart
-
- equals(Object) - Method in class eu.easyrpa.openframework.email.service.EmailServiceSecret
-
- eu.easyrpa.openframework.email - package eu.easyrpa.openframework.email
-
Functionality for working with email messages within RPA process.
- eu.easyrpa.openframework.email.constants - package eu.easyrpa.openframework.email.constants
-
Constants used during working with mailbox or email messages.
- eu.easyrpa.openframework.email.exception - package eu.easyrpa.openframework.email.exception
-
Exceptions thrown during working with mailbox or email messages.
- eu.easyrpa.openframework.email.message - package eu.easyrpa.openframework.email.message
-
Object model representing parts of email message.
- eu.easyrpa.openframework.email.message.templates - package eu.easyrpa.openframework.email.message.templates
-
Templates support for email message body.
- eu.easyrpa.openframework.email.service - package eu.easyrpa.openframework.email.service
-
Services to work with mailbox and email messages.
- eu.easyrpa.openframework.email.service.javax - package eu.easyrpa.openframework.email.service.javax
-
Implementation of email services based on javax.mail functionality (SMTP, IMAP and POP3 protocols).
- eu.easyrpa.openframework.email.utils - package eu.easyrpa.openframework.email.utils
-
Miscellaneous utility classes.
- excludeFromCcRecipients(String...) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Excludes given email addresses from the list of CC recipients of this email message.
- excludeFromRecipients(String...) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Excludes given email addresses from the list of recipients of this email message.
- fetchAllMessages() - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets all email messages contained in all mailbox folders.
- fetchAllMessages(Predicate<EmailMessage>) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets all email messages contained in all mailbox folders and satisfy to specific condition.
- fetchAllMessages(Predicate<EmailMessage>) - Method in interface eu.easyrpa.openframework.email.service.InboundEmailService
-
Gets all email messages contained in all mailbox folders and satisfy to specific condition.
- fetchAllMessages(Predicate<EmailMessage>) - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- fetchMessage(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Searches email message in the mailbox with given message ID.
- fetchMessage(String) - Method in interface eu.easyrpa.openframework.email.service.InboundEmailService
-
Searches email message in the mailbox with given message ID.
- fetchMessage(String) - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- fetchMessages() - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets all email messages contained in the default mailbox folder.
- fetchMessages(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets all email messages contained in the mailbox folder with given name.
- fetchMessages(Predicate<EmailMessage>) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets email messages contained in the default mailbox folder and satisfy to specific condition.
- fetchMessages(String, Predicate<EmailMessage>) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets email messages contained in the mailbox folder with given name and satisfy to specific condition.
- fetchMessages(String, Predicate<EmailMessage>) - Method in interface eu.easyrpa.openframework.email.service.InboundEmailService
-
Gets email messages contained in the mailbox folder with given name and satisfy to specific condition.
- fetchMessages(String, Predicate<EmailMessage>) - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- fetchUnreadMessages(boolean) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets unread messages contained in the mailbox.
- fetchUnreadMessages(String, boolean) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets unread messages contained in the mailbox folder with given name.
- fetchUnreadMessages(String, boolean) - Method in interface eu.easyrpa.openframework.email.service.InboundEmailService
-
Gets unread messages contained in the mailbox folder with given name.
- fetchUnreadMessages(String, boolean) - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- forwardedMessage - Variable in class eu.easyrpa.openframework.email.EmailMessage
-
Link to the email message that this email message forwards.
- forwardMessage(boolean) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Generates a new email message that is a forwarding of this email message.
- FreeMarkerTemplate - Class in eu.easyrpa.openframework.email.message.templates
-
Represents a textual template based on FreeMarker template language.
- FreeMarkerTemplate(InputStream) - Constructor for class eu.easyrpa.openframework.email.message.templates.FreeMarkerTemplate
-
Constructs a new FreeMarkerTemplate with given template text.
- FreeMarkerTemplate(InputStream, String) - Constructor for class eu.easyrpa.openframework.email.message.templates.FreeMarkerTemplate
-
Constructs a new FreeMarkerTemplate with given template text.
- FreeMarkerTemplate(String, Map<String, Object>) - Constructor for class eu.easyrpa.openframework.email.message.templates.FreeMarkerTemplate
-
Constructs a new FreeMarkerTemplate with given template text.
- from - Variable in class eu.easyrpa.openframework.email.EmailMessage
-
Email address displayed in the filed From: of this email message.
- from(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the email address displayed in the field From: of this email message.
- FROM_TPL - Static variable in class eu.easyrpa.openframework.email.constants.EmailConfigParam
-
- fromJson(String) - Static method in class eu.easyrpa.openframework.email.EmailMessage
-
Deserializes the email message from JSON.
- getAddress() - Method in class eu.easyrpa.openframework.email.message.EmailAddress
-
Gets email address without person name.
- getAttachmentPlaceholder(String) - Static method in class eu.easyrpa.openframework.email.message.EmailAttachment
-
Generates the string that indicates a place in the text of email message body where the attached file with
given name should be inserted.
- getAttachments() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets attachments attached to this email message.
- getAttachments() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getBatchSize() - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getBccRecipients() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets list of email addresses who are BCC recipients of this email message.
- getBccRecipients() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getBodyParts() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets the list of parts that constituents the body of this email message.
- getBodyParts() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getBodyProperties() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets properties used for substitution of variables within the body of this email message.
- getCcRecipients() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets list of email addresses who are CC recipients of this email message.
- getCcRecipients() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getCharset() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets charset of this email message body.
- getCharset() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getConfigParam(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets value of configuration parameter specified in the RPA platform by the given key.
- getConfigParam(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets value of configuration parameter specified in the RPA platform by the key that depends on the actual
value of
EmailMessage.typeName.
- getContent() - Method in class eu.easyrpa.openframework.email.message.EmailAttachment
-
Gets the file content of this attachment.
- getContent() - Method in class eu.easyrpa.openframework.email.message.EmailBodyPart
-
Gets the content of this email body part.
- getContent(Map<String, Object>) - Method in class eu.easyrpa.openframework.email.message.EmailBodyPart
-
Gets compiled content of this email body part using given properties.
- getContentType() - Method in class eu.easyrpa.openframework.email.message.EmailBodyPart
-
Gets the MIME type of this email body part content.
- getDate() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets the date of this email message.
- getDate() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getDateTime() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets the date of this email message.
- getDefaultFolder() - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets the name of default mailbox folder with inbound messages.
- getDefaultPort() - Method in enum eu.easyrpa.openframework.email.service.InboundEmailProtocol
-
Gets default port that is used for this protocol.
- getDefaultPort() - Method in enum eu.easyrpa.openframework.email.service.OutboundEmailProtocol
-
Gets default port that is used for this protocol.
- getFileName() - Method in class eu.easyrpa.openframework.email.message.EmailAttachment
-
Gets the file name of this attachment.
- getForwardedMessage() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets the email message that this email message forwards.
- getFrom() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets email address displayed in the field From: of this email message.
- getFrom() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getHeaders() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets key-value map with all header parameters of this email message.
- getHeaders() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getHost() - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getHost() - Method in class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- getHtml() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets HTML representation of this email message body.
- getId() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets unique identifier of this email message within mailbox.
- getId() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getImagePlaceholder(String, int, int) - Static method in class eu.easyrpa.openframework.email.message.EmailAttachment
-
Generates the string that indicates a place in the text of email message body where the attached image with
given name and specific size should be inserted.
- getInboundService(String, InboundEmailProtocol, String) - Method in class eu.easyrpa.openframework.email.service.EmailServiceFactory
-
Creates a new instance of specific inbound email service that is intended to work with given email server
based on given protocol.
- getInputStream() - Method in class eu.easyrpa.openframework.email.message.EmailAttachment
-
Gets the file content of this attachment as stream.
- getInstance() - Static method in class eu.easyrpa.openframework.email.service.EmailServiceFactory
-
Gets the singleton instance of this factory.
- getMessageConverter() - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getMessageConverter() - Method in class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- getMessageCount() - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets amount of email messages in the default mailbox folder.
- getMessageCount(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets amount of email messages in the mailbox folder with given name.
- getMessageCount(String) - Method in interface eu.easyrpa.openframework.email.service.InboundEmailService
-
Gets amount of email messages in the mailbox folder with given name.
- getMessageCount(String) - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getMimeType() - Method in class eu.easyrpa.openframework.email.message.EmailAttachment
-
Gets MIME type of this attachment.
- getOutboundService(String, OutboundEmailProtocol, String) - Method in class eu.easyrpa.openframework.email.service.EmailServiceFactory
-
Creates a new instance of specific outbound email service that is intended to work with given email server
based on given protocol.
- getParentFolder() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets the name of mailbox folder where this email message is contained.
- getParentFolder() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getPassword() - Method in class eu.easyrpa.openframework.email.service.EmailServiceSecret
-
- getPersonal() - Method in class eu.easyrpa.openframework.email.message.EmailAddress
-
Gets the name of person related to this email address.
- getPort() - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getPort() - Method in class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- getProtocol() - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets protocol that is necessary to use for working with inbound email server.
- getProtocol() - Method in class eu.easyrpa.openframework.email.EmailSender
-
Gets protocol that is necessary to use for working with outbound email server.
- getProtocol() - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getProtocol() - Method in class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- getProtocolName() - Method in enum eu.easyrpa.openframework.email.service.InboundEmailProtocol
-
Gets the name of this protocol.
- getProtocolName() - Method in enum eu.easyrpa.openframework.email.service.OutboundEmailProtocol
-
Gets the name of this protocol.
- getRecipients() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets list of email addresses who are recipients of this email message.
- getRecipients() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getReplyOnMessage() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets the email message that this email message replies on.
- getReplyTo() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets list of email addresses who are supposed recipients of the replying on this email message.
- getReplyTo() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getSecret() - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets JSON string with secret information necessary to perform authentication to specific mailbox on
the server.
- getSecret() - Method in class eu.easyrpa.openframework.email.EmailSender
-
Gets JSON string with secret information necessary to perform authentication to specific mailbox on
the server.
- getSender() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets email address of the actual sender of this email message.
- getSender() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getSenderName() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets the display name of the actual sender of this email message.
- getSenderName() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getServer() - Method in class eu.easyrpa.openframework.email.EmailClient
-
Gets inbound email server URL.
- getServer() - Method in class eu.easyrpa.openframework.email.EmailSender
-
Gets outbound email server URL.
- getSession() - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getSession() - Method in class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- getStore() - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- getSubject() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets subject of this email message.
- getSubject() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- getText() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Gets text representation of this email message body.
- getUser() - Method in class eu.easyrpa.openframework.email.service.EmailServiceSecret
-
- parentFolder - Variable in class eu.easyrpa.openframework.email.EmailMessage
-
The name of mailbox folder where this email message is contained.
- parseEmlFile(String) - Static method in class eu.easyrpa.openframework.email.utils.EmailParsingUtils
-
Reads given file and parse it as EML file.
- parseEmlFile(InputStream) - Static method in class eu.easyrpa.openframework.email.utils.EmailParsingUtils
-
Reads and parse provided data as EML file.
- properties - Variable in class eu.easyrpa.openframework.email.message.templates.TextTemplate
-
Map with properties that is intended to use for substitution of variables within this template.
- property(String, Object) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Puts a new property into the properties map used for substitution of variables within the body of this
email message.
- protocol(InboundEmailProtocol) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the value of protocol that is necessary to use for working with inbound email server.
- protocol(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the value of protocol that is necessary to use for working with inbound email server.
- protocol(OutboundEmailProtocol) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly the value of protocol that is necessary to use for working with outbound email server.
- protocol(String) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly the value of protocol that is necessary to use for working with outbound email server.
- put(Map<String, Object>) - Method in class eu.easyrpa.openframework.email.message.templates.TextTemplate
-
Puts all properties of given map into properties of this template.
- put(String, Object) - Method in class eu.easyrpa.openframework.email.message.templates.TextTemplate
-
Puts a new property into properties of this template.
- secret(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the value of secret information necessary to perform authentication to specific mailbox on
the server.
- secret(String, String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly credentials necessary to perform authentication to specific mailbox on the server.
- secret(String) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly the value of secret information necessary to perform authentication to specific mailbox on
the server.
- secret(String, String) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly credentials necessary to perform authentication to specific mailbox on the server.
- send() - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sends this email message using provided email sender.
- send(EmailSender) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sends this email message using given email sender.
- send(EmailMessage) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sends given email message.
- send() - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- send(EmailSender) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- send(EmailMessage) - Method in class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- send(EmailMessage) - Method in interface eu.easyrpa.openframework.email.service.OutboundEmailService
-
Sends given email message.
- sender - Variable in class eu.easyrpa.openframework.email.EmailMessage
-
Email address of the actual sender of this email message that corresponds to email account on behalf of which
this message is sent.
- SENDER_NAME_TPL - Static variable in class eu.easyrpa.openframework.email.constants.EmailConfigParam
-
- senderName - Variable in class eu.easyrpa.openframework.email.EmailMessage
-
Display name of the actual sender of this email message.
- senderName(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the display name of the actual sender of this email message.
- server(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the value of inbound email server URL.
- server(String) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly the value of outbound email server URL.
- setAttachments(List<EmailAttachment>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets attachments for this email message.
- setAttachments(List<EmailAttachment>) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setBatchSize(int) - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- setBccRecipients(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the list of email addresses who are BCC recipients of this email message.
- setBccRecipients(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setBodyParts(List<EmailBodyPart>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets the list of parts that constituents the body of this email message.
- setBodyParts(List<EmailBodyPart>) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setBodyProperties(Map<String, Object>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets the map with properties used for substitution of variables within the body of this email message.
- setCcRecipients(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the list of email addresses who are CC recipients of this email message.
- setCcRecipients(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setCharset(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the charset of this email message body.
- setCharset(String) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setContent(String) - Method in class eu.easyrpa.openframework.email.message.EmailBodyPart
-
Sets the content for this email body part.
- setContentType(String) - Method in class eu.easyrpa.openframework.email.message.EmailBodyPart
-
Sets the MIME type of this email body part content.
- setDefaultFolder(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the name of default mailbox folder with inbound messages.
- setFrom(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the email address displayed in the field From: of this email message.
- setFrom(EmailAddress) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the email address displayed in the field From: of this email message.
- setFrom(EmailAddress) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setFrom(String) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setHeaders(Map<String, String>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets given key-value map as header parameters of this email message.
- setHeaders(Map<String, String>) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setMessageConverter(MessageConverter<Message>) - Method in class eu.easyrpa.openframework.email.service.javax.ImapPop3EmailService
-
- setMessageConverter(MessageConverter<Message>) - Method in class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- setPassword(String) - Method in class eu.easyrpa.openframework.email.service.EmailServiceSecret
-
- setProtocol(InboundEmailProtocol) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the value of protocol that is necessary to use for working with inbound email server.
- setProtocol(OutboundEmailProtocol) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly the value of protocol that is necessary to use for working with outbound email server.
- setRead(boolean) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets read/unread flag for this email message.
- setRead(boolean) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setRecipients(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the list of email addresses who are recipients of this email message.
- setRecipients(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setReplyTo(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the list of email addresses who are supposed recipients of the replying on this email message.
- setReplyTo(List<EmailAddress>) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setSecret(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the value of secret information necessary to perform authentication to specific mailbox on
the server.
- setSecret(String) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly the value of secret information necessary to perform authentication to specific mailbox on
the server.
- setSender(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets the email address of the actual sender of this email message.
- setSender(EmailAddress) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets the email address of the actual sender of this email message.
- setSender(EmailAddress) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setSender(String) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setSenderName(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the display name of the actual sender of this email message.
- setSenderName(String) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setServer(String) - Method in class eu.easyrpa.openframework.email.EmailClient
-
Sets explicitly the value of inbound email server URL.
- setServer(String) - Method in class eu.easyrpa.openframework.email.EmailSender
-
Sets explicitly the value of outbound email server URL.
- setSubject(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the subject of this email message.
- setSubject(String) - Method in class eu.easyrpa.openframework.email.service.javax.MimeMessageWrapper
-
- setUser(String) - Method in class eu.easyrpa.openframework.email.service.EmailServiceSecret
-
- SmtpEmailService - Class in eu.easyrpa.openframework.email.service.javax
-
Implementation of outbound email services that is working based on SMTP protocol.
- SmtpEmailService(String, OutboundEmailProtocol, String) - Constructor for class eu.easyrpa.openframework.email.service.javax.SmtpEmailService
-
- subject - Variable in class eu.easyrpa.openframework.email.EmailMessage
-
Subject of this email message.
- subject(String) - Method in class eu.easyrpa.openframework.email.EmailMessage
-
Sets explicitly the subject of this email message.
- SUBJECT_TPL - Static variable in class eu.easyrpa.openframework.email.constants.EmailConfigParam
-