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: README.md
+35-35Lines changed: 35 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,58 +1,58 @@
1
-
Aspose.Email Cloud is a REST API for creating email applications that work with common email file formats. This SDK:
2
-
- Lets developers manipulate formats related to emailing such as Outlook MSG, EML, VCard and iCalendar files
3
-
- Has built-in email client
1
+
Aspose.Email Cloud is a REST API for creating email applications that work with standard email file formats. This SDK:
2
+
- Lets developers manipulate different emails’ formats such as Outlook MSG, EML, VCard, and iCalendar files
3
+
- Has a built-in email client
4
4
- Supports AI functionalities:
5
-
- Business card recognition
6
-
- Name API for parsing and handling personal names
5
+
-The Business card recognition
6
+
-The Name API for parsing and handling personal names
7
7
8
-
To use this SDK, you will need App SID and App Key which can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (free registration in Aspose Cloud is required for this).
8
+
To use this SDK, you need an App SID and an App Key; they can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (it requires free registration in Aspose Cloud for this).
9
9
10
10
## How to use the SDK?
11
11
The complete source code is available in the GIT repository.
12
-
Use reference documentation available [**here**](docs/README.md)
12
+
Use reference documentation, available [**here**](docs/README.md)
13
13
14
14
### Usage examples
15
-
To use API you should create EmailApi object:
15
+
To use the API, you should create an EmailApi object:
16
16
```csharp
17
17
usingAspose.Email.Cloud.Sdk.Api; //EmailApi class is here
18
-
usingAspose.Email.Cloud.Sdk.Model; //REST API models here
19
-
usingAspose.Email.Cloud.Sdk.Model.Requests; //Request models here (all API calls use corresponding request model class)
18
+
usingAspose.Email.Cloud.Sdk.Model; //REST API models are here
19
+
usingAspose.Email.Cloud.Sdk.Model.Requests; //Request models are here (all API calls use corresponding request model class)
20
20
21
21
...
22
22
varappKey="Your App Key";
23
23
varappSid="Your App SID";
24
24
varemailApi=newEmailApi(appKey, appSid);
25
25
```
26
26
27
-
API calls could be synchronous or asynchronous (if supported by framework):
27
+
API calls can be synchronous or asynchronous (if it's supported by the framework):
0 commit comments