Skip to content

Commit 3b77e33

Browse files
Merge pull request #1 from aspose-email-cloud/develop
Aspose.Email Cloud 19.11 released
2 parents 7d3ba01 + 4b47a5a commit 3b77e33

File tree

173 files changed

+16198
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+16198
-7
lines changed

.gitignore

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
# Compiled class file
1+
.settings
22
*.class
33

4-
# Log file
5-
*.log
6-
7-
# BlueJ files
8-
*.ctxt
9-
104
# Mobile Tools for Java (J2ME)
115
.mtj.tmp/
126

@@ -19,5 +13,25 @@
1913
*.tar.gz
2014
*.rar
2115

16+
# exclude jar for gradle wrapper
17+
!gradle/wrapper/*.jar
18+
gradle
19+
2220
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2321
hs_err_pid*
22+
23+
# build files
24+
**/target
25+
target
26+
.gradle
27+
build
28+
29+
.settings
30+
.classpath
31+
.project
32+
33+
# Log file
34+
*.log
35+
36+
# BlueJ files
37+
*.ctxt

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Aspose.Email Cloud is a REST API for creating email applications that work with common email file formats. It lets developers manipulate message formats such as Outlook MSG, EML and MHT files.
2+
3+
To use these SDKs, 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).
4+
5+
## How to use the SDK?
6+
The complete source code is available in the GIT repository.
7+
8+
### Install Aspose.Email for Cloud
9+
You can either directly use it in your project via jar file or add it as Maven dependency.
10+
11+
# Licensing
12+
All Aspose.Email for Cloud SDKs, helper scripts and templates are licensed under [MIT License](LICENSE).
13+
14+
# Resources
15+
+ [**SDK Reference documentation**](docs/README.md)
16+
+ [**Website**](https://www.aspose.cloud)
17+
+ [**Product Home**](https://products.aspose.cloud/Email/cloud)
18+
+ [**Documentation**](https://docs.aspose.cloud/display/Emailcloud/Home)
19+
+ [**API Reference**](https://apireference.aspose.cloud/email/)
20+
+ [**Free Support Forum**](https://forum.aspose.cloud/c/email)
21+
+ [**Paid Support Helpdesk**](https://helpdesk.aspose.cloud/)
22+
+ [**Blog**](https://blog.aspose.cloud/category/aspose-products/aspose-email-cloud/)
23+
+ [**Git repository: Aspose.Email Cloud SDK for .Net**](https://github.com/aspose-email-cloud/aspose-email-cloud-dotnet)
24+
+ [**Git repository: Aspose.Email Cloud SDK for Ruby**](https://github.com/aspose-email-cloud/aspose-email-cloud-ruby)
25+
+ [**Git repository: Aspose.Email Cloud SDK for Python**](https://github.com/aspose-email-cloud/aspose-email-cloud-python)
26+
+ [**Git repository: Aspose.Email Cloud SDK for PHP**](https://github.com/aspose-email-cloud/aspose-email-cloud-php)
27+
+ [**Git repository: Aspose.Email Cloud SDK for Typescript**](https://github.com/aspose-email-cloud/aspose-email-cloud-node)
28+
+ [**Git repository: Aspose.Email Cloud SDK for Java**](https://github.com/aspose-email-cloud/aspose-email-cloud-java)

docs/AccountBaseRequest.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
# com.aspose.email.cloud.sdk.model.AccountBaseRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**firstAccount** | **String** | |
8+
**secondAccount** | **String** | | [optional]
9+
**storageFolder** | [**StorageFolderLocation**](StorageFolderLocation.md) | | [optional]
10+
11+
12+
[[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)
13+

docs/AddAttachmentRequest.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# com.aspose.email.cloud.sdk.model.AddAttachmentRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**documentFolder** | [**StorageFolderLocation**](StorageFolderLocation.md) | Storage folder location of document | [optional]
8+
**attachmentFolder** | [**StorageFolderLocation**](StorageFolderLocation.md) | Storage folder location of an attachment | [optional]
9+
10+
11+
[[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)
12+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# com.aspose.email.cloud.sdk.model.AppendEmailAccountBaseRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**folder** | **String** | |
8+
**markAsSent** | **Boolean** | |
9+
10+
11+
[[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)
12+

docs/AppendEmailBaseRequest.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
# com.aspose.email.cloud.sdk.model.AppendEmailBaseRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**emailFile** | [**StorageFileLocation**](StorageFileLocation.md) | Email document file location in storage |
8+
9+
10+
[[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)
11+

docs/AppendEmailMimeBaseRequest.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
# com.aspose.email.cloud.sdk.model.AppendEmailMimeBaseRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**base64MimeMessage** | **String** | Email document serialized as MIME string |
8+
9+
10+
[[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)
11+

docs/BaseObject.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# com.aspose.email.cloud.sdk.model.BaseObject
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | **String** | Gets or sets the name of an object. | [optional]
8+
**type** | **String** | Property type. Used for deserialization purposes | [optional]
9+
10+
11+
[[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)
12+

docs/ContactFormat.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# ContactFormat
3+
4+
## Enum
5+
6+
7+
* `VCARD` (value: `"VCard"`)
8+
9+
* `WEBDAV` (value: `"WebDav"`)
10+
11+
* `MSG` (value: `"Msg"`)
12+
13+
14+
15+
[[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)
16+

docs/CreateEmailRequest.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# com.aspose.email.cloud.sdk.model.CreateEmailRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**emailDocument** | [**EmailDocument**](EmailDocument.md) | An email document that should be created |
8+
**storageFolder** | [**StorageFolderLocation**](StorageFolderLocation.md) | Email document location in storage | [optional]
9+
10+
11+
[[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)
12+

0 commit comments

Comments
 (0)