34.4. 사용법
34.4.1. SES 프로듀서에서 평가한 메시지 헤더
헤더 | 유형 | 설명 |
---|---|---|
|
| 보낸 사람의 이메일 주소입니다. |
|
| 이 이메일의 대상입니다. |
|
| 메시지의 제목입니다. |
|
| 메시지에 대한 회신 이메일 주소입니다. |
|
| 반송 알림을 전달할 이메일 주소입니다. |
|
| Camel 2.12.3 이메일 콘텐츠가 HTML인지 여부를 표시하는 플래그입니다. |
34.4.2. SES 생산자가 설정한 메시지 헤더
헤더 | 유형 | 설명 |
---|---|---|
|
| Amazon SES 메시지 ID입니다. |
34.4.3. 고급 AmazonSimpleEmailService 구성
AmazonSimpleEmailService
인스턴스 구성을 더 많이 제어해야 하는 경우 자체 인스턴스를 생성하고 URI에서 해당 인스턴스를 참조할 수 있습니다.
from("direct:start") .to("aws-ses://example@example.com?amazonSESClient=#client");
#client
는 레지스트리의 AmazonSimpleEmailService
를 나타냅니다.
예를 들어 Camel 애플리케이션이 방화벽 뒤에서 실행되고 있는 경우 다음을 수행합니다.
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);