代码放在:https://code.csdn.net/snippets/610970
是用搜狐的sendClound平台提供的webapi,http://sendcloud.sohu.com/doc/apiGuide.html
请大家指出不足的地方,十分感谢!
感谢分享,但作为一个新手...完全看不懂代码的意图啊!
能不能加一些简单介绍,使用说明,还有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();