You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sms service return as well response for each service individually (Not generic), which can be used in the code if you need to store related information into the Database.
261
+
Sms service returns general response which includes general properties in already integrated services.
262
262
263
-
The responses are:
264
-
-**DexatelSmsSendResponse**
265
-
-**TwilioSmsSendResponse**
266
-
267
-
Both responses return with list (ex. List<GeneralSmsResponse>) when you use any of the methods to send sms.
263
+
Both methods return `List<GeneralSmsResponse>` when you use them while sending sms.
264
+
If you set a variable to the call, you will be able to use returned response.
268
265
269
266
```csharp
270
267
publicclassGeneralSmsResponse
@@ -292,6 +289,19 @@ var email = new EmailMessage
292
289
};
293
290
awaitemailService.SendAsync(email);
294
291
```
292
+
Both methods return response (SendAsync - `GeneralEmailResponse`; SendBulkAsync - `List<GeneralEmailResponse>`) when you use them while sending email.
293
+
If you set a variable to the call, you will be able to use returned response.
0 commit comments