
- add_action('phpmailer_init', 'mail_smtp');
- function mail_smtp( $phpmailer ) {
- $phpmailer->FromName = '诗梦博客'; //发件人名称
- $phpmailer->Host = 'smtp.qq.com'; //修改为你使用的邮箱SMTP服务器
- $phpmailer->Port = 465; //SMTP端口
- $phpmailer->Username = '23113497@qq.com'; //邮箱账户
- $phpmailer->Password = '*********'; //邮箱密码(此处填写QQ邮箱生成的授权码)
- $phpmailer->From = 'admin@mom1.cn'; //邮箱账户
- $phpmailer->SMTPAuth = true;
- $phpmailer->SMTPSecure = 'ssl'; //tls or ssl (port=25时->留空,465时->ssl)
- $phpmailer->IsSMTP();
- }
2018年6月28日 上午11:24 沙发
先攒个沙发吧
2018年8月21日 下午10:57 板凳
瞧一瞧