| 1234567891011121314151617181920212223 |
- <?php
- namespace WY\app\controller;
- use WY\app\libs\Controller;
- use WY\app\libs\Email;
- if (!defined('WY_ROOT')) {
- exit;
- }
- class test extends Controller
- {
- public function index()
- {
- $subject = array('title' => '测试', 'email' => 'kiritu@126.com', 'content' => 'sfcxzsfsdfsdf');
- // $subject = array('title' => '测试', 'email' => '376560967@qq.com', 'content' => 'sfcxzsfsdfsdf');
- /* $this->config['smtp_server'] = 'pop.qq.com';
- $this->config['smtp_email'] = '729229251@qq.com';
- $this->config['smtp_pwd'] = 'chen&592056';*/
- $result = $this->res->sendMail($subject, $this->config);
- echo $result;
- }
- }
- ?>
|