We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f1d6b0 commit 41df4a6Copy full SHA for 41df4a6
articles/communication-services/quickstarts/email/includes/send-email-java.md
@@ -275,7 +275,7 @@ executorService.submit(() -> {
275
poller.subscribe(
276
response -> {
277
if (response.getStatus() == LongRunningOperationStatus.SUCCESSFULLY_COMPLETED) {
278
- System.out.printf("Successfully sent the email (operation id: %s)%n", response.getValue().getId());
+ System.out.printf("Successfully sent the email (operation id: %s)\n", response.getValue().getId());
279
}
280
else {
281
// The operation ID can be retrieved as soon as the first response is recieved from the PollerFlux.
0 commit comments