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 Node.Js source code. This SDK allows you to work with Aspose.Email Cloud REST APIs in your Node.Js 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:
10
12
- Lets developers manipulate different emails’ formats such as Outlook MSG, EML, VCard, and iCalendar files
11
-
-Has a built-in email client
12
-
- Supports AI functionalities:
13
+
-Lets developers manipulate different emails' formats such as Outlook MSG, EML, VCard, and iCalendar files
14
+
- Supports AI functions:
13
15
- The Business card recognition
14
16
- The Name API for parsing and handling personal names
15
-
17
+
- Has a built-in email client. This client provides:
18
+
- Unified REST API for different email protocols: IMAP, POP3, SMTP, EWS, WebDav
19
+
- Virtual multi-account
20
+
- Message threads (POP3 accounts are also supported)
21
+
- Email configuration discovery
22
+
- Disposable email address detection
23
+
24
+
## New features in version 20.7
25
+
- New MAPI message files API with models:
26
+
-`MapiMessageDto` - represents the Microsoft Outlook message.
27
+
-`MapiCalendarDto` - represents the Microsoft Outlook calendar object.
28
+
-`MapiContactDto` - represents the Microsoft Outlook contact information.
29
+
- Improved Recurrence pattern support for CalendarDto.
30
+
31
+
See [Release notes](https://docs.aspose.cloud/display/emailcloud/Aspose.Email+Cloud+20.7+Release+Notes)
16
32
## How to use the SDK?
17
33
The complete source code is available in the GIT repository.
18
-
Use [SDK tutorials](https://docs.aspose.cloud/display/emailcloud/SDK+Tutorials), [reference documentation](https://github.com/aspose-email-cloud/aspose-email-cloud-node/blob/master/doc/README.md) and [examples from this document](#usage-examples)
34
+
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](doc/README.md)
19
47
20
48
### Prerequisites
21
49
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).
var givenName =extractedValues.find(extracted=>extracted.category=='GivenName');
169
-
var surname =extractedValues.find(extracted=>extracted.category=='Surname');
170
-
console.log(givenName.value); // 'John'
171
-
console.log(surname.value); // 'Cane'
172
-
```
173
-
</details>
79
+
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)
174
80
175
81
# Licensing
176
82
All Aspose.Email Cloud SDKs, helper scripts and templates are licensed under [MIT License](LICENSE).
Copy file name to clipboardExpand all lines: doc/CalendarDto.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,8 @@ Name | Type | Description | Notes
17
17
**microsoftIntendedStatus** | **string** | Specifies the INTENDED status. Enum, available values: NotDefined, Free, Tentative, Busy, Oof | [default to undefined]
18
18
**optionalAttendees** | [**Array<MailAddress>**](MailAddress.md) | Optional attendees. | [optional][default to undefined]
19
19
**organizer** | [**MailAddress**](MailAddress.md) | Event organizer. | [default to undefined]
20
-
**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][default to undefined]
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][default to undefined]
21
+
**recurrence** | [**RecurrencePatternDto**](RecurrencePatternDto.md) | Recurrence pattern | [optional][default to undefined]
21
22
**reminders** | [**Array<CalendarReminder>**](CalendarReminder.md) | Reminders. | [optional][default to undefined]
22
23
**sequenceId** | **string** | The sequence id. Read only. | [optional][default to undefined]
23
24
**startDate** | **Date** | Start date. | [default to undefined]
0 commit comments