外贸营销
记录WordPress代码实现QQ邮箱SMTP发送邮件
这个是QQ邮箱的其它未测试,将下面的代码添加到主题目录的functions.php文件中,就可以了,评论就有邮件回复了。
add_action('phpmailer_init', 'mail_smtp');function mail_smtp( $phpmailer ) {$phpmailer->FromName = '深圳外贸建站'; //发件人名称$phpmailer->Host = 'smtp.qq.com'; //修改为你使用的邮箱SMTP服务器$phpmailer->Port = 465; //SMTP端口$phpmailer->Username = '448696976@qq.com'; //邮箱账户$phpmailer->Password = '*********'; //邮箱密码(此处填写QQ邮箱生成的授权码)$phpmailer->From = 'admin@seo628.com'; //邮箱账户$phpmailer->SMTPAuth = true;$phpmailer->SMTPSecure = 'ssl'; //tls or ssl (port=25时->留空,465时->ssl)$phpmailer->IsSMTP();}
标签