(String subject, String body)
| 16 | * Send a notification email. |
| 17 | */ |
| 18 | public static void sendNotification(String subject, String body) { |
| 19 | String topicarn = System.getenv("NOTIFICATION_TOPIC"); |
| 20 | PublishRequest publishRequest = new PublishRequest(topicarn, body, subject); |
| 21 | PublishResult publishResult = snsclient.publish(publishRequest); |
| 22 | logger.info("Email sent: " + publishResult.getMessageId()); |
| 23 | } |
| 24 | |
| 25 | /* |
| 26 | * Create an SNS subscription. |
no outgoing calls
no test coverage detected