📧 [SendCloud](https://www.sendcloud.net) Mail SDK
$ composer require overtrue/sendcloud -vvv
use Overtrue\SendCloud\SendCloud;
$apiUser = 'overtrue_test_xxxx';
$apiKey = 'UWoBGa2sgxyxxxxxxxx';
$client = new SendCloud($apiUser, $apiKey);
$result = $client->post('/mail/send', [
'from' => '[email protected]',
'to' => '[email protected]',
'subject' => '来自 SendCloud 的第一封邮件!',
'html' => '你太棒了!你已成功的 从 SendCloud 发送了一封测试邮件!',
]);
var_dump($result);
//{
// "result": true,
// "statusCode": 200,
// "message": "请求成功",
// "info": {
// "emailIdList": [
// "1513828329529_91891_27315_500.sc-10_9_13_218-inbounddemo@easywechat.com"
// ]
// }
//}⏎
想知道如何从零开始构建 PHP 扩展包?
请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— 《PHP 扩展包实战教程 - 从入门到发布》
MIT