camel-smtps-kafka-connector sink configuration

When using camel-smtps-kafka-connector as sink make sure to use the following Maven dependency to have support for the connector:

<dependency>
  <groupId>org.apache.camel.kafkaconnector</groupId>
  <artifactId>camel-smtps-kafka-connector</artifactId>
  <version>x.x.x</version>
  <!-- use the same version as your Camel Kafka connector version -->
</dependency>

The camel-smtps sink connector supports 58 options, which are listed below.

Name Description Default Priority

camel.sink.path.host

The mail server host name

null

HIGH

camel.sink.path.port

The port number of the mail server

null

MEDIUM

camel.sink.endpoint.bcc

Sets the BCC email address. Separate multiple email addresses with comma.

null

MEDIUM

camel.sink.endpoint.cc

Sets the CC email address. Separate multiple email addresses with comma.

null

MEDIUM

camel.sink.endpoint.from

The from email address

"camel@localhost"

MEDIUM

camel.sink.endpoint.lazyStartProducer

Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.

false

MEDIUM

camel.sink.endpoint.replyTo

The Reply-To recipients (the receivers of the response mail). Separate multiple email addresses with a comma.

null

MEDIUM

camel.sink.endpoint.subject

The Subject of the message being sent. Note: Setting the subject in the header takes precedence over this option.

null

MEDIUM

camel.sink.endpoint.to

Sets the To email address. Separate multiple email addresses with comma.

null

MEDIUM

camel.sink.endpoint.javaMailSender

To use a custom org.apache.camel.component.mail.JavaMailSender for sending emails.

null

MEDIUM

camel.sink.endpoint.additionalJavaMailProperties

Sets additional java mail properties, that will append/override any default properties that is set based on all the other options. This is useful if you need to add some special options but want to keep the others as is.

null

MEDIUM

camel.sink.endpoint.alternativeBodyHeader

Specifies the key to an IN message header that contains an alternative email body. For example, if you send emails in text/html format and want to provide an alternative mail body for non-HTML email clients, set the alternative mail body with this key as a header.

"CamelMailAlternativeBody"

MEDIUM

camel.sink.endpoint.attachmentsContentTransfer EncodingResolver

To use a custom AttachmentsContentTransferEncodingResolver to resolve what content-type-encoding to use for attachments.

null

MEDIUM

camel.sink.endpoint.authenticator

The authenticator for login. If set then the password and username are ignored. Can be used for tokens which can expire and therefore must be read dynamically.

null

MEDIUM

camel.sink.endpoint.basicPropertyBinding

Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities

false

MEDIUM

camel.sink.endpoint.binding

Sets the binding used to convert from a Camel message to and from a Mail message

null

MEDIUM

camel.sink.endpoint.connectionTimeout

The connection timeout in milliseconds.

30000

MEDIUM

camel.sink.endpoint.contentType

The mail message content type. Use text/html for HTML mails.

"text/plain"

MEDIUM

camel.sink.endpoint.contentTypeResolver

Resolver to determine Content-Type for file attachments.

null

MEDIUM

camel.sink.endpoint.debugMode

Enable debug mode on the underlying mail framework. The SUN Mail framework logs the debug messages to System.out by default.

false

MEDIUM

camel.sink.endpoint.headerFilterStrategy

To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter headers.

null

MEDIUM

camel.sink.endpoint.ignoreUnsupportedCharset

Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.

false

MEDIUM

camel.sink.endpoint.ignoreUriScheme

Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.

false

MEDIUM

camel.sink.endpoint.javaMailProperties

Sets the java mail options. Will clear any default properties and only use the properties provided for this method.

null

MEDIUM

camel.sink.endpoint.session

Specifies the mail session that camel should use for all mail interactions. Useful in scenarios where mail sessions are created and managed by some other resource, such as a JavaEE container. When using a custom mail session, then the hostname and port from the mail session will be used (if configured on the session).

null

MEDIUM

camel.sink.endpoint.synchronous

Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).

false

MEDIUM

camel.sink.endpoint.useInlineAttachments

Whether to use disposition inline or attachment.

false

MEDIUM

camel.sink.endpoint.password

The password for login. See also setAuthenticator(MailAuthenticator).

null

MEDIUM

camel.sink.endpoint.sslContextParameters

To configure security using SSLContextParameters.

null

MEDIUM

camel.sink.endpoint.username

The username for login. See also setAuthenticator(MailAuthenticator).

null

MEDIUM

camel.component.smtps.bcc

Sets the BCC email address. Separate multiple email addresses with comma.

null

MEDIUM

camel.component.smtps.cc

Sets the CC email address. Separate multiple email addresses with comma.

null

MEDIUM

camel.component.smtps.from

The from email address

"camel@localhost"

MEDIUM

camel.component.smtps.lazyStartProducer

Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.

false

MEDIUM

camel.component.smtps.replyTo

The Reply-To recipients (the receivers of the response mail). Separate multiple email addresses with a comma.

null

MEDIUM

camel.component.smtps.subject

The Subject of the message being sent. Note: Setting the subject in the header takes precedence over this option.

null

MEDIUM

camel.component.smtps.to

Sets the To email address. Separate multiple email addresses with comma.

null

MEDIUM

camel.component.smtps.javaMailSender

To use a custom org.apache.camel.component.mail.JavaMailSender for sending emails.

null

MEDIUM

camel.component.smtps.additionalJavaMailProperties

Sets additional java mail properties, that will append/override any default properties that is set based on all the other options. This is useful if you need to add some special options but want to keep the others as is.

null

MEDIUM

camel.component.smtps.alternativeBodyHeader

Specifies the key to an IN message header that contains an alternative email body. For example, if you send emails in text/html format and want to provide an alternative mail body for non-HTML email clients, set the alternative mail body with this key as a header.

"CamelMailAlternativeBody"

MEDIUM

camel.component.smtps.attachmentsContentTransfer EncodingResolver

To use a custom AttachmentsContentTransferEncodingResolver to resolve what content-type-encoding to use for attachments.

null

MEDIUM

camel.component.smtps.authenticator

The authenticator for login. If set then the password and username are ignored. Can be used for tokens which can expire and therefore must be read dynamically.

null

MEDIUM

camel.component.smtps.basicPropertyBinding

Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities

false

MEDIUM

camel.component.smtps.configuration

Sets the Mail configuration

null

MEDIUM

camel.component.smtps.connectionTimeout

The connection timeout in milliseconds.

30000

MEDIUM

camel.component.smtps.contentType

The mail message content type. Use text/html for HTML mails.

"text/plain"

MEDIUM

camel.component.smtps.contentTypeResolver

Resolver to determine Content-Type for file attachments.

null

MEDIUM

camel.component.smtps.debugMode

Enable debug mode on the underlying mail framework. The SUN Mail framework logs the debug messages to System.out by default.

false

MEDIUM

camel.component.smtps.ignoreUnsupportedCharset

Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.

false

MEDIUM

camel.component.smtps.ignoreUriScheme

Option to let Camel ignore unsupported charset in the local JVM when sending mails. If the charset is unsupported then charset=XXX (where XXX represents the unsupported charset) is removed from the content-type and it relies on the platform default instead.

false

MEDIUM

camel.component.smtps.javaMailProperties

Sets the java mail options. Will clear any default properties and only use the properties provided for this method.

null

MEDIUM

camel.component.smtps.session

Specifies the mail session that camel should use for all mail interactions. Useful in scenarios where mail sessions are created and managed by some other resource, such as a JavaEE container. When using a custom mail session, then the hostname and port from the mail session will be used (if configured on the session).

null

MEDIUM

camel.component.smtps.useInlineAttachments

Whether to use disposition inline or attachment.

false

MEDIUM

camel.component.smtps.headerFilterStrategy

To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message.

null

MEDIUM

camel.component.smtps.password

The password for login. See also setAuthenticator(MailAuthenticator).

null

MEDIUM

camel.component.smtps.sslContextParameters

To configure security using SSLContextParameters.

null

MEDIUM

camel.component.smtps.useGlobalSslContext Parameters

Enable usage of global SSL context parameters.

false

MEDIUM

camel.component.smtps.username

The username for login. See also setAuthenticator(MailAuthenticator).

null

MEDIUM