Skip to content

Releases: lanlin/nylas-php

smart methods for message & thread

18 Dec 10:11
Compare
Choose a tag to compare
  1. remove the access_token parameter from all methods.

  2. add many smart methods for message & thread

$nylas->Messages()->Smart()->
image

$nylas->Threads()->Smart()->
image

batch request support for some methods

17 Dec 10:15
Compare
Choose a tag to compare

Most of the methods that have the get & delete prefix support batch request.

For more detail about the batch request, you should have to read the source code.

Sorry, I have no time to write documents.

$id  = 'id_xxx';
$ids = ['id_xxx', 'id_yyy', ...];

// one per time
$dataA = $nylas->Contacts()->Contact()->getContact($id);
$dataB = $nylas->Contacts()->Contact()->deleteContact($id);

// batch request
$dataC = $nylas->Contacts()->Contact()->getContact($ids);
$dataD = $nylas->Contacts()->Contact()->deleteContact($ids);

Nylas API 2.0 PHP SDK

04 Dec 03:33
Compare
Choose a tag to compare

Nylas-PHP SDK Upgraded!!!

What's new?

  1. API 2.0 support
  2. All Nylas APIs have been implemented within this SDK.
  3. Chained calls and good code hints, easy to use
  4. Support send & get message in raw type
  5. Support async multiple upload & download
    -- Contact picture download
    -- File upload & download
  6. The parameters that required by methods almost the same as nylas official api required.

partially tested

30 Nov 10:25
Compare
Choose a tag to compare
partially tested Pre-release
Pre-release

partially tested.

untested version

27 Nov 03:29
Compare
Choose a tag to compare
untested version Pre-release
Pre-release

untested nylas API 2.0 package.