Email.php 448 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\api\controller\hprose;
  3. use app\api\controller\hprose\util\EmailHelper;
  4. class Email
  5. {
  6. public function emailSend($toEmail, $subject, $content, $option = [])
  7. {
  8. $res = EmailHelper::instance()->send($toEmail, $subject, $content, $option);
  9. if (!$res) {
  10. return returnFormat(999, "发送失败", $res);
  11. }
  12. return returnFormat(0, "发送成功,请查收邮件", $res);
  13. }
  14. }