From 752c37a863c1d3bf8c5cd51482eee684f08a1c83 Mon Sep 17 00:00:00 2001 From: Niladri28dutta Date: Thu, 20 Jul 2017 00:08:42 +0530 Subject: [PATCH 1/4] FIX MISSING CODE TO SEND EMAIL Fix missing code in Use case to send single email to multiple users. --- USE_CASES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/USE_CASES.md b/USE_CASES.md index ba7f1a708..104aa7ef7 100644 --- a/USE_CASES.md +++ b/USE_CASES.md @@ -350,6 +350,7 @@ namespace Example plainTextContent, htmlContent ); + var response = await client.SendEmailAsync(msg); } } } From 58af12b3b32c7037216628e90c34dcd5a64b3e1d Mon Sep 17 00:00:00 2001 From: Niladri28dutta Date: Thu, 20 Jul 2017 00:36:49 +0530 Subject: [PATCH 2/4] Update USE_CASES.md Fix missing code in Use case to send single email to multiple users. --- USE_CASES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/USE_CASES.md b/USE_CASES.md index 104aa7ef7..3ab8e9e0f 100644 --- a/USE_CASES.md +++ b/USE_CASES.md @@ -350,7 +350,8 @@ namespace Example plainTextContent, htmlContent ); - var response = await client.SendEmailAsync(msg); + var response = await client.SendEmailAsync(msg); + } } } From c7536f4c3503a33ab68b176dd46dbd9e41c85b92 Mon Sep 17 00:00:00 2001 From: Niladri28dutta Date: Thu, 20 Jul 2017 01:30:05 +0530 Subject: [PATCH 3/4] Update USE_CASES.md Fix missing code in the use case for sending multiple emails to multiple recipients. --- USE_CASES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/USE_CASES.md b/USE_CASES.md index 3ab8e9e0f..2c7c4a6a1 100644 --- a/USE_CASES.md +++ b/USE_CASES.md @@ -351,7 +351,7 @@ namespace Example htmlContent ); var response = await client.SendEmailAsync(msg); - + } } } @@ -439,6 +439,7 @@ namespace Example htmlContent, substitutions ); + var response = await client.SendEmailAsync(msg); } } } From f5e1cfd2f9d866753554edde9014b55635248bac Mon Sep 17 00:00:00 2001 From: Niladri28dutta Date: Thu, 20 Jul 2017 01:44:34 +0530 Subject: [PATCH 4/4] Update USE_CASES.md Remove extra linefeed from the code for use case. --- USE_CASES.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/USE_CASES.md b/USE_CASES.md index 2c7c4a6a1..e60b428a1 100644 --- a/USE_CASES.md +++ b/USE_CASES.md @@ -350,8 +350,7 @@ namespace Example plainTextContent, htmlContent ); - var response = await client.SendEmailAsync(msg); - + var response = await client.SendEmailAsync(msg); } } }