PHPackages                             aspose/email-sdk-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. aspose/email-sdk-php

Abandoned → [aspose/aspose-email-cloud](/?search=aspose%2Faspose-email-cloud)Library[Mail &amp; Notifications](/categories/mail)

aspose/email-sdk-php
====================

This repository contains Aspose Cloud SDK for PHP source code. Aspose Cloud SDK for PHP lets PHP developers convert and process a variety of file formats in the cloud quickly and easily.

20.2.0(6y ago)281MITPHPPHP &gt;=7.3CI failing

Since Nov 27Pushed 2y ago2 watchersCompare

[ Source](https://github.com/aspose-email-cloud/aspose-email-cloud-php)[ Packagist](https://packagist.org/packages/aspose/email-sdk-php)[ Docs](https://github.com/aspose-email-cloud/aspose-email-cloud-php)[ RSS](/packages/aspose-email-sdk-php/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (3)Versions (6)Used By (0)

[![Packagist](https://camo.githubusercontent.com/ad8048f64b6e7f204efd3df3f548ad90511967b0aacc2e2515823419f1346673/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6173706f73652f6173706f73652d656d61696c2d636c6f7564)](https://packagist.org/packages/aspose/aspose-email-cloud) [![License](https://camo.githubusercontent.com/78da88d4f1e2142b635dcd3decef643c24ade91c0773e019eeed116963931b4a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6173706f73652d656d61696c2d636c6f75642f6173706f73652d656d61696c2d636c6f75642d706870)](https://packagist.org/packages/aspose/aspose-email-cloud) [![PHP](https://camo.githubusercontent.com/5b3a06104a3db6f43bd32378ba5239d8f727939426742399d21e829aa3b55bc4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6173706f73652f6173706f73652d656d61696c2d636c6f7564)](https://packagist.org/packages/aspose/aspose-email-cloud) [![tests](https://github.com/aspose-email-cloud/aspose-email-cloud-php/workflows/tests/badge.svg)](https://github.com/aspose-email-cloud/aspose-email-cloud-php/workflows/tests/badge.svg)

Manage Emails in Cloud via PHP REST SDK
=======================================

[](#manage-emails-in-cloud-via-php-rest-sdk)

[Aspose.Email Cloud SDK for PHP](https://products.aspose.cloud/email/php) is a REST API SDK for creating email applications that work with standard email file formats such as Outlook MSG, EML, iCalendar files and VCard.

This SDK allows you to work with Aspose.Email Cloud REST APIs in your PHP applications quickly and easily, with zero initial cost.

[Aspose.Email Cloud home](https://products.aspose.cloud/email/family)

[Swagger UI](https://apireference.aspose.cloud/email/)

Cloud Email Processing Features
===============================

[](#cloud-email-processing-features)

Aspose.Email Cloud is a REST API for creating email applications that work with standard email file formats. This SDK:

- Lets developers manipulate different emails' formats such as Outlook MSG, EML, VCard, and iCalendar files.
- Supports AI functions:
    - The Business card recognition.
    - The Name API for parsing and handling personal names.
- Has a built-in email client. This client provides:
    - Unified REST API for different email protocols: IMAP, POP3, SMTP, EWS, WebDav.
    - Virtual multi-account.
    - Message threads (POP3 accounts are also supported).
- Email configuration discovery.
- Disposable email address detection.

Improvements in version 21.9
----------------------------

[](#improvements-in-version-219)

Aspose.Email Cloud 21.9.0 comes with improvements described below:

- `EmailCloud.Email.Convert` method documentation fixed.
- Some documentation improvements.
- SDK dependencies updated.

See [Release notes](https://docs.aspose.cloud/email/aspose-email-cloud-21-9-release-notes/).

How to use the SDK?
-------------------

[](#how-to-use-the-sdk)

The complete source code is available in the [GIT repository](https://github.com/aspose-email-cloud/aspose-email-cloud-php/tree/master/src/Aspose/Email).

Use [SDK tutorials](https://docs.aspose.cloud/email/sdk-tutorials/) and [SDK reference documentation](https://docs.aspose.cloud/email/reference-api/).

### Prerequisites

[](#prerequisites)

To use this SDK, you need a Client id and a Client secret; they can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (it requires free registration in Aspose Cloud for this).

### Installation

[](#installation)

You can either directly use SDK in your project via source code or get [Packagegist distribution](https://packagist.org/packages/aspose/aspose-email-cloud). From the command line:

```
composer require aspose/aspose-email-cloud

```

See more details about SDK installation in this tutorial: [SDK setup](https://docs.aspose.cloud/email/sdk-setup/).

### Usage examples

[](#usage-examples)

To use the API, you should create an EmailCloud object:

```
$configuration = new Configuration(); // Aspose\Email\Configuration
$configuration
    ->setClientSecret("Your Client secret")
    ->setClientId("Your Client id");
$api = new EmailCloud($configuration);
```

#### Business cards recognition API

[](#business-cards-recognition-api)

Use `AiBcrApi::parse` method to parse business card image to VCard DTO:

```
$file = new SplFileObject("path/to/image/to/parse.png");
$result = $api->ai()->bcr()->parse(
    Models::AiBcrParseRequest()
            ->file($file)
            ->is_single(true)
        ->build()
);
$contact = $result->getValue()[0];
$parsedDisplayName = $contact->getDisplayName();
```

Aspose.Email Cloud SDKs in Popular Languages
--------------------------------------------

[](#asposeemail-cloud-sdks-in-popular-languages)

.NETJavaPHPPythonRubyNode.js[GitHub](https://github.com/aspose-email-cloud/aspose-email-cloud-dotnet)[GitHub](https://github.com/aspose-email-cloud/aspose-email-cloud-java)[GitHub](https://github.com/aspose-email-cloud/aspose-email-cloud-php)[GitHub](https://github.com/aspose-email-cloud/aspose-email-cloud-python)[GitHub](https://github.com/aspose-email-cloud/aspose-email-cloud-ruby)[GitHub](https://github.com/aspose-email-cloud/aspose-email-cloud-node)[NuGet](https://www.nuget.org/packages/Aspose.Email-Cloud/)[Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-email-cloud)[Composer](https://packagist.org/packages/aspose/aspose-email-cloud)[PIP](https://pypi.org/project/aspose.email-cloud/)[GEM](https://rubygems.org/gems/aspose_email_cloud)[NPM](https://www.npmjs.com/package/@asposecloud/aspose-email-cloud)[Product Page](https://products.aspose.cloud/email/php) | [Documentation](https://docs.aspose.cloud/email/) | [Demo](https://products.aspose.app/email/family) | [Swagger UI](https://apireference.aspose.cloud/email/) | [Blog](https://blog.aspose.cloud/category/email/) | [Free support](https://forum.aspose.cloud/c/email) | [Free trial](https://dashboard.aspose.cloud/#/apps) | [SDK reference documentation](https://docs.aspose.cloud/email/reference-api)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~30 days

Total

4

Last Release

2269d ago

Major Versions

19.12.0 → 20.1.02020-01-28

PHP version history (2 changes)19.11.0PHP &gt;=5.5

19.12.0PHP &gt;=7.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/32087729?v=4)[AsposeCloud](/maintainers/AsposeCloud)[@asposecloud](https://github.com/asposecloud)

---

Top Contributors

[![Marat-Gumerov](https://avatars.githubusercontent.com/u/56924662?v=4)](https://github.com/Marat-Gumerov "Marat-Gumerov (157 commits)")[![Aspose-Email-Team](https://avatars.githubusercontent.com/u/59023126?v=4)](https://github.com/Aspose-Email-Team "Aspose-Email-Team (72 commits)")[![Vladislav-Koliesnikov](https://avatars.githubusercontent.com/u/35568288?v=4)](https://github.com/Vladislav-Koliesnikov "Vladislav-Koliesnikov (5 commits)")[![babar-raza](https://avatars.githubusercontent.com/u/1225645?v=4)](https://github.com/babar-raza "babar-raza (1 commits)")[![dynabic-billing-team](https://avatars.githubusercontent.com/u/36235486?v=4)](https://github.com/dynabic-billing-team "dynabic-billing-team (1 commits)")[![rizwanniazigroupdocs](https://avatars.githubusercontent.com/u/16472118?v=4)](https://github.com/rizwanniazigroupdocs "rizwanniazigroupdocs (1 commits)")[![sohail-aspose](https://avatars.githubusercontent.com/u/8667577?v=4)](https://github.com/sohail-aspose "sohail-aspose (1 commits)")

---

Tags

aiasposeaspose-cloudcloudemailemlicalendarmapimhtmlmsgphpsdkvcardphpasposeaspose cloud

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/aspose-email-sdk-php/health.svg)

```
[![Health](https://phpackages.com/badges/aspose-email-sdk-php/health.svg)](https://phpackages.com/packages/aspose-email-sdk-php)
```

###  Alternatives

[djunehor/laravel-sms

Send SMS from your laravel application

385.3k1](/packages/djunehor-laravel-sms)[martian/spammailchecker

A laravel package that protect users from entering non-existing/spam email addresses.

422.0k](/packages/martian-spammailchecker)[usamamuneerchaudhary/filament-notifier

A powerful notification system for FilamentPHP that handles multi-channel notifications with template management, scheduling, and real-time delivery. Built for developers who need enterprise-grade notifications without the complexity.

321.1k](/packages/usamamuneerchaudhary-filament-notifier)[naif/php-cpanel-email

Manage cPanel Email Addresses

211.3k](/packages/naif-php-cpanel-email)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
