mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-04-04 13:43:30 +03:00
Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
|
4af0346851 | ||
|
27db5897c0 | ||
|
4a3024f211 |
2 changed files with 23 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue