PHP code example of hyancat / sendcloud

1. Go to this page and download the library: Download hyancat/sendcloud library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hyancat / sendcloud example snippets


use Hyancat\Sendcloud\SendCloudFacade as SendCloud;

SendCloud::send('emails.welcome', ['name'=> '小明'], function (SendCloudMessage $message) {
	$message->to(['[email protected]', '[email protected]'])->subject('你好!');
})->success(function ($response) {
})->failure(function ($response, $error) {
});

SendCloud::sendTemplate('sendcloud_test_template', ['name'=> ['小明', '小红']], function (SendCloudMessage $message) {
	$message->to(['[email protected]', '[email protected]'])->subject('你好!');
})->success(function ($response) {
})->failure(function ($response, $error) {
});