mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-14 20:23:12 +03:00
36 lines
741 B
PHP
36 lines
741 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2013 Mailgun
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
namespace Mailgun\Api;
|
||
|
|
||
|
use Mailgun\Assert;
|
||
|
use Mailgun\Model\Attachment\Attachment as Model;
|
||
|
|
||
|
/**
|
||
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||
|
*/
|
||
|
class Attachment extends HttpApi
|
||
|
{
|
||
|
/**
|
||
|
* @param string $url
|
||
|
*
|
||
|
* @return Model
|
||
|
*/
|
||
|
public function show($url)
|
||
|
{
|
||
|
Assert::stringNotEmpty($url);
|
||
|
Assert::regex($url, '@https://.*mailgun\.(net|org)/v.+@');
|
||
|
Assert::regex($url, '|/attachments/[0-9]+|');
|
||
|
|
||
|
$response = $this->httpGet($url);
|
||
|
|
||
|
return $this->hydrateResponse($response, Model::class);
|
||
|
}
|
||
|
}
|