Compare commits

...

3 commits

Author SHA1 Message Date
Tobias Nyholm
4af0346851
Fixed typo 2019-02-02 08:14:32 +01:00
David Garcia
27db5897c0 Add method to get access to Mailing List API endpoints (#554)
* Add method to get access to Mailing List API endpoints

* Prepare for 2.8.1

* Update CHANGELOG.md
2019-02-02 08:13:33 +01:00
Nyholm
4a3024f211 Added Mailgun::ips() 2019-01-06 23:32:46 +00:00
2 changed files with 23 additions and 0 deletions

View file

@ -2,6 +2,12 @@
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
## 2.8.1
### Fixed
- Added missing method to use all Mailing List and Ip features.
## 2.8.0
### Added

View file

@ -11,6 +11,7 @@ namespace Mailgun;
use Http\Client\Common\HttpMethodsClient;
use Http\Client\HttpClient;
use Mailgun\Api\MailingList;
use Mailgun\Connection\RestClient;
use Mailgun\Constants\ExceptionMessages;
use Mailgun\HttpClient\Plugin\History;
@ -382,6 +383,14 @@ class Mailgun
return new Api\Message($this->httpClient, $this->requestBuilder, $this->hydrator);
}
/**
* @return MailingList
*/
public function mailingList()
{
return new MailingList($this->httpClient, $this->requestBuilder, $this->hydrator);
}
/**
* @return Api\Suppression
*/
@ -389,4 +398,12 @@ class Mailgun
{
return new Api\Suppression($this->httpClient, $this->requestBuilder, $this->hydrator);
}
/**
* @return Api\Ip
*/
public function ips()
{
return new Api\Ip($this->httpClient, $this->requestBuilder, $this->hydrator);
}
}