mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-06 00:09:24 +03:00
Make sure the link is updated
This commit is contained in:
parent
92d9d5ead8
commit
bbb88f0113
@ -26,7 +26,7 @@ use Mailgun\Model\Domain\VerifyResponse;
|
|||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link https://documentation.mailgun.com/api-domains.html}.
|
* @see https://documentation.mailgun.com/api-domains.html
|
||||||
*
|
*
|
||||||
* @author Sean Johnson <sean@mailgun.com>
|
* @author Sean Johnson <sean@mailgun.com>
|
||||||
*/
|
*/
|
||||||
|
@ -15,7 +15,7 @@ use Mailgun\Assert;
|
|||||||
use Mailgun\Model\Event\EventResponse;
|
use Mailgun\Model\Event\EventResponse;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link https://documentation.mailgun.com/api-events.html}.
|
* @see https://documentation.mailgun.com/en/latest/api-events.html
|
||||||
*
|
*
|
||||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
@ -18,7 +18,7 @@ use Mailgun\Model\Ip\UpdateResponse;
|
|||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link https://documentation.mailgun.com/en/latest/api-ips.html#ips}.
|
* @see https://documentation.mailgun.com/en/latest/api-ips.html
|
||||||
*
|
*
|
||||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
@ -19,6 +19,9 @@ use Mailgun\Model\MailingList\PagesResponse;
|
|||||||
use Mailgun\Model\MailingList\ShowResponse;
|
use Mailgun\Model\MailingList\ShowResponse;
|
||||||
use Mailgun\Model\MailingList\UpdateResponse;
|
use Mailgun\Model\MailingList\UpdateResponse;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see https://documentation.mailgun.com/en/latest/api-mailinglists.html
|
||||||
|
*/
|
||||||
class MailingList extends HttpApi
|
class MailingList extends HttpApi
|
||||||
{
|
{
|
||||||
public function member(): Member
|
public function member(): Member
|
||||||
|
@ -21,6 +21,9 @@ use Mailgun\Model\MailingList\Member\ShowResponse;
|
|||||||
use Mailgun\Model\MailingList\Member\UpdateResponse;
|
use Mailgun\Model\MailingList\Member\UpdateResponse;
|
||||||
use Mailgun\Model\MailingList\UpdateResponse as MailingListUpdateResponse;
|
use Mailgun\Model\MailingList\UpdateResponse as MailingListUpdateResponse;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see https://documentation.mailgun.com/en/latest/api-mailinglists.html
|
||||||
|
*/
|
||||||
class Member extends HttpApi
|
class Member extends HttpApi
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -19,6 +19,8 @@ use Mailgun\Model\Message\ShowResponse;
|
|||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @see https://documentation.mailgun.com/en/latest/api-sending.html
|
||||||
|
*
|
||||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||||
*/
|
*/
|
||||||
class Message extends HttpApi
|
class Message extends HttpApi
|
||||||
@ -29,6 +31,8 @@ class Message extends HttpApi
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @see https://documentation.mailgun.com/en/latest/api-sending.html#sending
|
||||||
|
*
|
||||||
* @return SendResponse|ResponseInterface
|
* @return SendResponse|ResponseInterface
|
||||||
*/
|
*/
|
||||||
public function send(string $domain, array $params)
|
public function send(string $domain, array $params)
|
||||||
@ -60,6 +64,8 @@ class Message extends HttpApi
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @see https://documentation.mailgun.com/en/latest/api-sending.html#sending
|
||||||
|
*
|
||||||
* @param array $recipients with all you send emails to. Including bcc and cc
|
* @param array $recipients with all you send emails to. Including bcc and cc
|
||||||
* @param string $message Message filepath or content
|
* @param string $message Message filepath or content
|
||||||
*
|
*
|
||||||
@ -94,6 +100,8 @@ class Message extends HttpApi
|
|||||||
/**
|
/**
|
||||||
* Get stored message.
|
* Get stored message.
|
||||||
*
|
*
|
||||||
|
* @see https://documentation.mailgun.com/en/latest/api-sending.html#retrieving-stored-messages
|
||||||
|
*
|
||||||
* @param bool $rawMessage if true we will use "Accept: message/rfc2822" header
|
* @param bool $rawMessage if true we will use "Accept: message/rfc2822" header
|
||||||
*
|
*
|
||||||
* @return ShowResponse|ResponseInterface
|
* @return ShowResponse|ResponseInterface
|
||||||
|
@ -19,7 +19,7 @@ use Mailgun\Model\Route\ShowResponse;
|
|||||||
use Mailgun\Model\Route\UpdateResponse;
|
use Mailgun\Model\Route\UpdateResponse;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link https://documentation.mailgun.com/api-routes.html}.
|
* @see https://documentation.mailgun.com/api-routes.html
|
||||||
*
|
*
|
||||||
* @author David Garcia <me@davidgarcia.cat>
|
* @author David Garcia <me@davidgarcia.cat>
|
||||||
*/
|
*/
|
||||||
|
@ -16,7 +16,7 @@ use Mailgun\Model\Stats\AllResponse;
|
|||||||
use Mailgun\Model\Stats\TotalResponse;
|
use Mailgun\Model\Stats\TotalResponse;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link https://documentation.mailgun.com/api-stats.html}.
|
* @see https://documentation.mailgun.com/en/latest/api-stats.html
|
||||||
*
|
*
|
||||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
@ -23,7 +23,7 @@ use Mailgun\Model\Tag\UpdateResponse;
|
|||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link https://documentation.mailgun.com/api-tags.html#tags}.
|
* @see https://documentation.mailgun.com/en/latest/api-tags.html
|
||||||
*
|
*
|
||||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
@ -23,6 +23,8 @@ use Psr\Http\Message\ResponseInterface;
|
|||||||
use Psr\Http\Client\ClientInterface;
|
use Psr\Http\Client\ClientInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @see https://documentation.mailgun.com/en/latest/api-webhooks.html
|
||||||
|
*
|
||||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||||
*/
|
*/
|
||||||
class Webhook extends HttpApi
|
class Webhook extends HttpApi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user