コードは次の場所にあります: https://code.csdn.net/snippets/610970
Sohu の sendClound プラットフォーム、http://sendcloud.sohu.com/doc/apiGuide.html によって提供される webapi を使用します
お願いします欠点があればご指摘ください、ありがとうございます!
共有してくれてありがとう、でも初心者としては... コードの意図がまったく理解できません。
簡単な紹介、使用方法、デモを追加してもらえますか?
共有していただきありがとうございます、しかし初心者としては... コードの意図がまったく理解できません。
簡単な紹介、使用方法、デモを追加してもらえますか?
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();