时间:2021-07-01 10:21:17 帮助过:30人阅读
感谢分享,但作为一个新手...完全看不懂代码的意图啊!
能不能加一些简单介绍,使用说明,还有demo啊?
感谢分享,但作为一个新手...完全看不懂代码的意图啊!
能不能加一些简单介绍,使用说明,还有demo啊?
require 'sendCloud.php'; $send = new SendCloud('mail','send'); //设置api auth信息 $send->set_api_auth('*','*'); //设置发件人 $send->set_send_from('runnerleer@gmail.com','runnerlee'); $arr = array( 'to' => 'demo@163.com', 'subject' => '这是第二份测试邮件', 'html' => 'this is the second test email', ); $send->set_post_data($arr); $send->exec();