Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
Mail ComponentThe mail component provides access to Email via Spring's Mail support and the underlying JavaMail system. Maven users will need to add the following dependency to their We have discovered that the geronimo mail You can set your custom resolver on the POP3 has some limitations and end users are encouraged to use IMAP if possible. You can use a mock framework for unit testing, which allows you to test without the need for a real mail server. However you should remember to not include the mock-mail when you go into production or other environments where you need to send mails to a real mail server. Just the presence of the mock-javamail.jar on the classpath means that it will kick in and avoid sending the mails. URI formatMail endpoints can have one of the following URI formats (for the protocols, SMTP, POP3, or IMAP, respectively): The mail component also supports secure variants of these protocols (layered over SSL). You can enable the secure protocols by adding You can append query options to the URI in the following format, Sample endpointsTypically, you specify a URI with login credentials as follows (taking SMTP as an example): Alternatively, it is possible to specify both the user name and the password as query options: For example:
|
Protocol | Default Port Number |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
Options
Property | Default | Description |
---|---|---|
|
| The host name or IP address to connect to. |
| See #DefaultPorts | The TCP port number to connect on. |
|
| The user name on the email server. |
|
| The password on the email server. |
|
| If |
|
| The mail message content type. Use |
|
| The folder to poll. |
|
| @deprecated Use the |
|
| The TO recipients (the receivers of the mail). Separate multiple email addresses with a comma. Email addresses containing special characters such as "&" will need to be handled differently - see How do I configure password options on Camel endpoints without the value being encoded. |
|
| As of Camel 2.8.4, 2.9.1+, the Reply-To recipients (the receivers of the response mail). Separate multiple email addresses with a comma. |
|
| The CC recipients (the receivers of the mail). Separate multiple email addresses with a comma. |
|
| The BCC recipients (the receivers of the mail). Separate multiple email addresses with a comma. |
|
| The FROM email address. |
|
| As of Camel 2.3, the Subject of the message being sent. Note: Setting the subject in the header takes precedence over this option. |
|
| Camel 2.11.3/2.12.2: Consumer only. Will mark the |
|
| Deletes the messages after they have been processed. This is done by setting the |
|
| It is possible to configure a consumer endpoint so that it processes only unseen messages (that is, new messages) or all messages. Note that Camel always skips deleted messages. The default option of |
|
| Camel 2.10: Consumer only. After processing a mail message, it can be copied to a mail folder with the given name. You can override this configuration value, with a header with the key |
|
| Sets the maximum number of messages to consume during a poll. This can be used to avoid overloading a mail server, if a mailbox folder contains a lot of messages. Default value of |
|
| Specifies the key to an IN message header that contains an alternative email body. For example, if you send emails in |
|
| Enable debug mode on the underlying mail framework. The SUN Mail framework logs the debug messages to |
|
| The connection timeout in milliseconds. Default is 30 seconds. |
|
| Milliseconds before the polling starts. |
|
| Camel will poll the mailbox only once a minute by default to avoid overloading the mail server. |
|
| Set to |
|
| Camel 2.8.3/2.9: Whether the consumer should disconnect after polling. If enabled this forces Camel to connect on each poll. |
|
| Camel 2.10.4: Whether the consumer should close the folder after polling. Setting this option to |
|
| Set any additional java mail properties. For instance if you want to set a special property when using POP3 you can now provide the option directly in the URI such as: |
|
| Camel 2.8: Specifies whether Camel should map the received mail message to Camel body/headers. If set to true, the body of the mail message is mapped to the body of the Camel IN message and the mail headers are mapped to IN headers. If this option is set to false then the IN message contains a raw |
|
| Specifies the maximum number of messages to gather per poll. By default, no maximum is set. Can be used to set a limit of e.g. 1000 to avoid downloading thousands of files when the server starts up. Set a value of 0 or negative to disable this option. |
|
| Specifies a pluggable org.apache.camel.component.mail.JavaMailSender instance in order to use a custom email implementation. |
|
| Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then |
|
| Camel 2.10: Reference to a |
|
| Camel 2.11: Refers to a |
|
| Camel 2.11: To configure search terms directly from the endpoint uri, which supports a limited number of terms defined by the |
| null | Camel 2.15: To configure the sortTerms that IMAP supports to sort the searched mails. You may need to define an array of
Camel 2.16: You can also specify a comma separated list of sort terms on the URI that Camel will convert internally. For example, to sort descending by date you would use |
| null | Camel 2.15: Refers to aorg.apache.camel.component.mail. MailBoxPostProcessAction for doing post processing tasks on the mailbox once the normal processing ended. |
skipFailedMessage | false | Camel 2.15.1: If the mail consumer cannot retrieve a given mail message, then this option allows to skip the message and move on to retrieve the next mail message. The default behavior would be the consumer throws an exception and no mails from the batch would be able to be routed by Camel. |
handleFailedMessage | false | Camel 2.15.1: If the mail consumer cannot retrieve a given mail message, then this option allows to handle the caused exception by the consumer's error handler. By enable the bridge error handler on the consumer, then the Camel routing error handler can handle the exception instead. The default behavior would be the consumer throws an exception and no mails from the batch would be able to be routed by Camel. |
dummyTrustManager | false | Camel 2.17:To use a dummy security setting for trusting all certificates. Should only be used for development mode, and not production. |
idempotentRepository | null | Camel 2.17: A pluggable repository org.apache.camel.spi.IdempotentRepository which allows to cluster consuming from the same mailbox, and let the repository coordinate whether a mail message is valid for the consumer to process. |
idempotentRepositoryRemoveOnCommit | true | Camel 2.17: When using idempotent repository, then when the mail message has been successfully processed and is committed, should the message id be removed from the idempotent repository (default) or be kept in the repository. By default its assumed the message id is unique and has no value to be kept in the repository, because the mail message will be marked as seen/moved or deleted to prevent it from being consumed again. And therefore having the message id stored in the idempotent repository has little value. However this option allows to store the message id, for whatever reason you may have. |
mailUidGenerator | Camel 2.17: A pluggable MailUidGenerator that allows to use custom logic to generate UUID of the mail message. |
SSL support
The underlying mail framework is responsible for providing SSL support. You may either configure SSL/TLS support by completely specifying the necessary Java Mail API configuration options, or you may provide a configured SSLContextParameters through the component or endpoint configuration.
Using the JSSE Configuration Utility
As of Camel 2.10, the mail component supports SSL/TLS configuration through the Camel JSSE Configuration Utility. This utility greatly decreases the amount of component specific code you need to write and is configurable at the endpoint and component levels. The following examples demonstrate how to use the utility with the mail component.
Programmatic configuration of the endpoint
Spring DSL based configuration of endpoint
Configuring JavaMail Directly
Camel uses SUN JavaMail, which only trusts certificates issued by well known Certificate Authorities (the default JVM trust configuration). If you issue your own certificates, you have to import the CA certificates into the JVM's Java trust/key store files, override the default JVM trust/key store files (see SSLNOTES.txt
in JavaMail for details).
Mail Message Content
Camel uses the message exchange's IN body as the MimeMessage text content. The body is converted to String.class
.
Camel copies all of the exchange's IN headers to the MimeMessage headers. You may wish to read How to avoid sending some or all message headers to prevent inadvertent data "leaks" from your application.
The subject of the MimeMessage can be configured using a header property on the IN message. The code below demonstrates this:To
:CamelMailMessageId
from the Camel message header.
Headers take precedence over pre-configured recipients
The recipients specified in the message headers always take precedence over recipients pre-configured in the endpoint URI. The idea is that if you provide any recipients in the message headers, that is what you get. The recipients pre-configured in the endpoint URI are treated as a fallback.
In the sample code below, the email message is sent to davsclaus@apache.org
, because it takes precedence over the pre-configured recipient, info@mycompany.com
. Any cc
and bcc
settings in the endpoint URI are also ignored and those recipients will not receive any mail. The choice between headers and pre-configured settings is all or nothing: the mail component either takes the recipients exclusively from the headers or exclusively from the pre-configured settings. It is not possible to mix and match headers and pre-configured settings.
Multiple recipients for easier configuration
It is possible to set multiple recipients using a comma-separated or a semicolon-separated list. This applies both to header settings and to settings in an endpoint URI. For example:
The preceding example uses a semicolon, ;
, as the separator character.
Setting sender name and email
You can specify recipients in the format, name <email>
, to include both the name and the email address of the recipient.
For example, you define the following headers on the a Message:
JavaMail API (ex SUN JavaMail)
JavaMail API is used under the hood for consuming and producing mails.
We encourage end-users to consult these references when using either POP3 or IMAP protocol. Note particularly that POP3 has a much more limited set of features than IMAP.
- JavaMail POP3 API
- JavaMail IMAP API
- And generally about the MAIL Flags
Samples
We start with a simple route that sends the messages received from a JMS queue as emails. The email account is the admin
account on mymailserver.com
.
In the next sample, we poll a mailbox for new emails once every minute. Notice that we use the special consumer
option for setting the poll interval, consumer.delay
, as 60000 milliseconds = 60 seconds.
In this sample we want to send a mail to multiple recipients:
Sending mail with attachment sample
The Attachments API is based on the Java Activation Framework and is generally only used by the Mail API. Since many of the other Camel components do not support attachments, the attachments could potentially be lost as they propagate along the route. The rule of thumb, therefore, is to add attachments just before sending a message to the mail endpoint.
The mail component supports attachments. In the sample below, we send a mail message containing a plain text message with a logo file attachment.
SSL sample
In this sample, we want to poll our Google mail inbox for mails. To download mail onto a local mail client, Google mail requires you to enable and configure SSL. This is done by logging into your Google mail account and changing your settings to allow IMAP access. Google have extensive documentation on how to do this.
The preceding route polls the Google mail inbox for new mails once every minute and logs the received messages to the newmail
logger category.
Running the sample with DEBUG
logging enabled, we can monitor the progress in the logs:
Consuming mails with attachment sample
In this sample we poll a mailbox and store all attachments from the mails as files. First, we define a route to poll the mailbox. As this sample is based on google mail, it uses the same route as shown in the SSL sample:
Instead of logging the mail we use a processor where we can process the mail from java code:
As you can see the API to handle attachments is a bit clunky but it's there so you can get the javax.activation.DataHandler
so you can handle the attachments using standard API.
How to split a mail message with attachments
In this example we consume mail messages which may have a number of attachments. What we want to do is to use the Splitter EIP per individual attachment, to process the attachments separately. For example if the mail message has 5 attachments, we want the Splitter to process five messages, each having a single attachment. To do this we need to provide a custom Expression to the Splitter where we provide a List<Message> that contains the five messages with the single attachment.
The code is provided out of the box in Camel 2.10 onwards in the camel-mail
component. The code is in the class: org.apache.camel.component.mail.SplitAttachmentsExpression
, which you can find the source code here
In the Camel route you then need to use this Expression in the route as shown below:
From Camel 2.16 onwards you can also split the attachments as byte[] to be stored as the message body. This is done by creating the expression with boolean true
And then use the expression with the splitter eip.
Using custom SearchTerm
Available as of Camel 2.11
You can configure a searchTerm
on the MailEndpoint
which allows you to filter out unwanted mails.
For example to filter mails to contain Camel in either Subject or Text you can do as follows:
Notice we use the "searchTerm.subjectOrBody"
as parameter key to indicate that we want to search on mail subject or body, to contain the word "Camel".
The class org.apache.camel.component.mail.SimpleSearchTerm
has a number of options you can configure:
Or to get the new unseen emails going 24 hours back in time you can do. Notice the "now-24h" syntax. See the table below for more details.
You can have multiple searchTerm in the endpoint uri configuration. They would then be combined together using AND operator, eg so both conditions must match. For example to get the last unseen emails going back 24 hours which has Camel in the mail subject you can do:
Option | Default | Description |
---|---|---|
unseen |
| Whether to limit by unseen mails only. |
subjectOrBody |
| To limit by subject or body to contain the word. |
subject |
| The subject must contain the word. |
body |
| The body must contain the word. |
from |
| The mail must be from a given email pattern. |
to |
| The mail must be to a given email pattern. |
fromSentDate |
| The mail must be sent after or equals (GE) a given date. The date pattern is |
toSentDate |
| The mail must be sent before or equals (BE) a given date. The date pattern is |
The SimpleSearchTerm
is designed to be easily configurable from a POJO, so you can also configure it using a <bean> style in XML
You can then refer to this bean, using #beanId in your Camel route as shown:
In Java there is a builder class to build compound SearchTerm}}s using the {{org.apache.camel.component.mail.SearchTermBuilder
class.
This allows you to build complex terms such as: