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.
SES ComponentAvailable as of Camel 2.8.4 The ses component supports sending emails with Amazon's SES service. Prerequisites You must have a valid Amazon Web Services developer account, and be signed up to use Amazon SES. More information are available at Amazon SES. URI Formataws-ses://from[?options] You can append query options to the URI in the following format, ?options=value&option2=value&... URI Options
Required SES component options You have to provide the amazonSESClient in the Registry or your accessKey and secretKey to access the Amazon's SES. UsageMessage headers evaluated by the SES producer
Message headers set by the SES producer
Advanced AmazonSimpleEmailService configurationIf you need more control over the from("direct:start") .to("aws-ses://example@example.com?amazonSESClient=#client"); The For example if your Camel Application is running behind a firewall: AWSCredentials awsCredentials = new BasicAWSCredentials("myAccessKey", "mySecretKey"); ClientConfiguration clientConfiguration = new ClientConfiguration(); clientConfiguration.setProxyHost("http://myProxyHost"); clientConfiguration.setProxyPort(8080); AmazonSimpleEmailService client = new AmazonSimpleEmailServiceClient(awsCredentials, clientConfiguration); registry.bind("client", client); DependenciesMaven users will need to add the following dependency to their pom.xml. pom.xml <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-aws</artifactId> <version>${camel-version}</version> </dependency> where |