12345678910111213141516171819202122 |
- <?php
- namespace app\api\controller\hprose;
- use app\api\controller\hprose\util\EmailHelper;
- class Email
- {
- public function emailSend($toEmail, $subject, $content, $option = [])
- {
- $res = EmailHelper::instance()->send($toEmail, $subject, $content, $option);
- if (!$res) {
- return returnFormat(999, "发送失败", $res);
- }
- return returnFormat(0, "发送成功,请查收邮件", $res);
- }
- }
|