test.php 672 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace WY\app\controller;
  3. use WY\app\libs\Controller;
  4. use WY\app\libs\Email;
  5. if (!defined('WY_ROOT')) {
  6. exit;
  7. }
  8. class test extends Controller
  9. {
  10. public function index()
  11. {
  12. $subject = array('title' => '测试', 'email' => 'kiritu@126.com', 'content' => 'sfcxzsfsdfsdf');
  13. // $subject = array('title' => '测试', 'email' => '376560967@qq.com', 'content' => 'sfcxzsfsdfsdf');
  14. /* $this->config['smtp_server'] = 'pop.qq.com';
  15. $this->config['smtp_email'] = '729229251@qq.com';
  16. $this->config['smtp_pwd'] = 'chen&592056';*/
  17. $result = $this->res->sendMail($subject, $this->config);
  18. echo $result;
  19. }
  20. }
  21. ?>