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
Copy file name to clipboardExpand all lines: email.md
+57-27Lines changed: 57 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,31 +1,44 @@
1
1
## Quickstart
2
2
3
-
#### Initialize the client with configuration
4
-
5
-
We support multiple authentication methods, e.g. you can use [API Key Header](https://www.infobip.com/docs/essentials/api-authentication#api-key-header). In this case value for `ApiKeyPrefix` in example below will be `App`.
6
-
7
-
To see your base URL, log in to the [Infobip API Resource](https://www.infobip.com/docs/api) hub with your Infobip credentials.
3
+
### Prepare configuration
8
4
5
+
First step is to initialize `Configuration` object to handle API authentication. In this case value for `ApiKeyPrefix` in example below will be `App`.
9
6
```csharp
10
7
varconfiguration=newConfiguration()
11
8
{
12
-
BasePath="<set your base URL here>",
13
-
ApiKeyPrefix="<set API key prefix here (App/Basic/IBSSO/Bearer)>",
14
-
ApiKey="<set your API key here>"
9
+
BasePath="<put your base URL here>",
10
+
ApiKeyPrefix="<put API key prefix here (App/Basic/IBSSO/Bearer)>",
You can also send delayed emails very easily. All you need to define is the desired date of the email delivery as `sendAt` parameter of the `SendEmail` method.
0 commit comments