draguo/directmail

阿里云邮件发送

1.0 2018-06-07 06:20 UTC

This package is auto-updated.

Last update: 2025-03-16 20:15:41 UTC


README

安装

    composer require draguo/directmail

使用

$body = "<h1>这是标题</h1>";
$mail = new \Draguo\DirectMail\DirectMail($accessKey, $secret);
$result = $mail->send([
    'from' => '', // 发信地址 AccountName
    'to' => '', // 多个地址可用逗号分隔,最多100个
    'name' => '', // 发件人昵称  FromAlias
    'subject' => '这个是邮件的主题', // Subject
    'body' => $body, // html or text
    'trace' => '' // 是否开启数据追踪功能, 1 或 0
]);

echo $result;