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
This repository contains Aspose.Email Cloud SDK for Java source code. This SDK allows you to work with Aspose.Email Cloud REST APIs in your Java applications quickly and easily, with zero initial cost.
Aspose.Email Cloud is a REST API for creating email applications that work with standard email file formats. This SDK:
11
+
- Lets developers manipulate different emails’ formats such as Outlook MSG, EML, VCard, and iCalendar files
12
+
- Lets developers manipulate different emails' formats such as Outlook MSG, EML, VCard, and iCalendar files
13
+
- Supports AI functions:
14
+
- The Business card recognition
15
+
- The Name API for parsing and handling personal names
16
+
- Has a built-in email client. This client provides:
17
+
- Unified REST API for different email protocols: IMAP, POP3, SMTP, EWS, WebDav
18
+
- Virtual multi-account
19
+
- Message threads (POP3 accounts are also supported)
20
+
- Email configuration discovery
21
+
- Disposable email address detection
22
+
23
+
## New features in version 20.7
24
+
- New MAPI message files API with models:
25
+
-`MapiMessageDto` - represents the Microsoft Outlook message.
26
+
-`MapiCalendarDto` - represents the Microsoft Outlook calendar object.
27
+
-`MapiContactDto` - represents the Microsoft Outlook contact information.
28
+
- Improved Recurrence pattern support for CalendarDto.
29
+
30
+
See [Release notes](https://docs.aspose.cloud/display/emailcloud/Aspose.Email+Cloud+20.7+Release+Notes)
9
31
10
32
## How to use the SDK?
11
33
The complete source code is available in the GIT repository.
12
34
13
-
Use [SDK tutorials](https://docs.aspose.cloud/display/emailcloud/SDK+Tutorials), [reference documentation](https://github.com/aspose-email-cloud/aspose-email-cloud-java/blob/master/docs/README.md) and [examples from this document](#usage-examples)
35
+
Use [SDK tutorials](https://docs.aspose.cloud/display/emailcloud/SDK+Tutorials):
36
+
-[SDK setup](https://docs.aspose.cloud/display/emailcloud/SDK+setup) - installation, account setup, first API calls
37
+
-[Business Cards Recognition API](https://docs.aspose.cloud/display/emailcloud/Business+Cards+Recognition+API) - convert captured business cards and name card images, into a vCard format
38
+
-[Working with Name API](https://docs.aspose.cloud/display/emailcloud/Working+with+Name+API) - format, genderize, compare, parse, autocomplete names
39
+
-[Email Message Files](https://docs.aspose.cloud/display/emailcloud/Email+Message+Files) - Convert EML to MSG and back, edit EML files, etc.
40
+
-[Quick Start With iCalendar API](https://docs.aspose.cloud/display/emailcloud/Quick+Start+With+iCalendar+API) - Crate and edit iCalendar files
41
+
-[Quick Start With VCard API](https://docs.aspose.cloud/display/emailcloud/Quick+Start+With+VCard+API) - Create and edit VCard files, business card recognition
SDK reference documentation is available in [this README](https://github.com/aspose-email-cloud/aspose-email-cloud-java/blob/master/docs/README.md)
14
47
15
48
### Prerequisites
16
49
To use these 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).
@@ -34,187 +67,26 @@ Then, add a dependency:
34
67
</dependency>
35
68
```
36
69
70
+
See more details about SDK installation in this tutorial: [SDK setup](https://docs.aspose.cloud/display/emailcloud/SDK+setup)
71
+
37
72
### Usage examples
38
73
To use the API, you should create an EmailApi object:
39
74
```java
40
75
EmailApi api =newEmailApi("Your App Key", "Your App SID");
41
76
```
42
77
43
78
#### Business cards recognition API
44
-
See examples below:
45
-
46
-
<detailsopen>
47
-
<summary>Parse business card images to VCard contact files</summary>
48
-
49
-
```java
50
-
// Upload business card image to storage
51
-
String storage ="First Storage"; //Your storage name
52
-
String fileName ="someFileName.png"; //Supports different image formats: PNG, JPEG, BMP, TIFF, GIF, etc.
StorageFileLocation contactFile = result.getValue().get(0); //result.getValue() can contain multiple files, if we sent multicard images or multiple images
75
-
// You can download the VCard file, which produced by the recognition method ...
if (component.getCategory().equals("GivenName")) {
207
-
givenName = component.getValue();
208
-
}
209
-
if (component.getCategory().equals("Surname")) {
210
-
surname = component.getValue();
211
-
}
212
-
}
213
-
}
214
-
System.out.println("Given name is "+ givenName); // "John"
215
-
System.out.println("Surname is "+ surname); // "Cane"
216
-
```
217
-
</details>
89
+
See more details [here](https://docs.aspose.cloud/display/emailcloud/Parse+Image+To+VCard+File) and [here](https://docs.aspose.cloud/display/emailcloud/Business+Cards+Recognition+API)
218
90
219
91
# Licensing
220
92
All Aspose.Email for Cloud SDKs, helper scripts and templates are licensed under [MIT License](LICENSE).
[[Back to Model list]](README.md#documentation-for-models)[[Back to API list]](README.md#documentation-for-api-endpoints)[[Back to API README]](README.md)
[[Back to Model list]](README.md#documentation-for-models)[[Back to API list]](README.md#documentation-for-api-endpoints)[[Back to API README]](README.md)
[[Back to Model list]](README.md#documentation-for-models)[[Back to API list]](README.md#documentation-for-api-endpoints)[[Back to API README]](README.md)
[[Back to Model list]](README.md#documentation-for-models)[[Back to API list]](README.md#documentation-for-api-endpoints)[[Back to API README]](README.md)
**recurrenceString** | **String** | String representation of recurrence pattern (See iCalendar RFC, \"Recurrence rule\" section). For example: For daily recurrence: \"FREQ=DAILY;COUNT=10;WKST=MO\" For monthly recurrence: \"BYSETPOS=1;BYDAY=MO,TU,WE,TH,FR;FREQ=MONTHLY;INTERVAL=10;WKST=MO\" For yearly recurrence: \"BYMONTHDAY=30;BYMONTH=1;FREQ=YEARLY;WKST=MO\" | [optional]
20
+
**recurrenceString** | **String** | Deprecated, use 'Recurrence' property. String representation of recurrence pattern (See iCalendar RFC, \"Recurrence rule\" section). For example: For daily recurrence: \"FREQ=DAILY;COUNT=10;WKST=MO\" For monthly recurrence: \"BYSETPOS=1;BYDAY=MO,TU,WE,TH,FR;FREQ=MONTHLY;INTERVAL=10;WKST=MO\" For yearly recurrence: \"BYMONTHDAY=30;BYMONTH=1;FREQ=YEARLY;WKST=MO\" | [optional]
[[Back to Model list]](README.md#documentation-for-models)[[Back to API list]](README.md#documentation-for-api-endpoints)[[Back to API README]](README.md)
[[Back to Model list]](README.md#documentation-for-models)[[Back to API list]](README.md#documentation-for-api-endpoints)[[Back to API README]](README.md)
0 commit comments