mooglepost/mooglepost-api-php-client

MooglePost API 的 PHP 客户端库

1.3.1 2023-05-27 11:50 UTC

This package is auto-updated.

Last update: 2024-08-27 14:50:13 UTC


README

MooglePost API 的 PHP 客户端库

Latest Stable Version License

安装

直接通过Composer安装

$ composer require mooglepost/mooglepost-api-php-client

基本用法

<?php

require_once 'vendor/autoload.php';

$mglpst = new MooglePost\Client('YOUR_API_KEY');

try {
	$mglpst->send('email@example.com', 'template-name');
} catch (Exception $e) {
	die('A MooglePost error occurred: '.$e->getMessage());
}

die('Your email has been sent !');