💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 3、发信-邮件 命令字:plg_cmd_send_email ### 请求参数 | email| 收件邮箱地址 | | --- | --- | | title| 标题 | | content| 内容 | ```   $cmd = PluginConfig::PLG_CMD_SEND_EMAIL;         $pluginClass = PluginHelper::findPluginClass($pluginUniKey);         $input = [ 'email'=> $email, 'title'=> $title, 'content'=> $content,         ];         $resp = PluginRpcHelper::call($pluginClass, $cmd, $input); if(PluginRpcHelper::isErrorPluginResp($resp)){ return$this->pluginError($resp);         } ```