PHP code example of hyancat / aliyun-direct-mail

1. Go to this page and download the library: Download hyancat/aliyun-direct-mail 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 / aliyun-direct-mail example snippets


    ...
	'directmail' => [
		'app_key'    => env('DIRECT_MAIL_APP_KEY'),
		'app_secret' => env('DIRECT_MAIL_APP_SECRET'),
		'region'     => 'cn-beijing',
		'account'    => [
			'alias' => env('DIRECT_MAIL_ACCOUNT_ALIAS'),
			'name' => env('DIRECT_MAIL_ACCOUNT_NAME'),
		]
	],
	...