代码如下,修改相关参数后,直接添加到当前主题的functions.php
文件中即可
1 2 3 4 5 6 7 8 9 10 11 12 13
| add_action('phpmailer_init', 'mail_smtp'); function mail_smtp( $phpmailer ) { $phpmailer->FromName = 'Admin'; $phpmailer->Host = 'smtp.example.com'; $phpmailer->Port = 465; $phpmailer->Username = 'admin@example.com'; $phpmailer->Password = '******'; $phpmailer->From = 'admin@example.com'; $phpmailer->SMTPAuth = true; $phpmailer->SMTPSecure = 'ssl'; $phpmailer->IsSMTP(); }
|
下面是一些常用邮箱的 POP3 与 SMTP 服务器
1 2 3 4 5 6 7 8 9 10 11
| 阿里企业云邮箱POP3/SMTP 协议收发邮件服务器地址分别如下: 收件服务器地址: POP 服务器地址:pop3.mxhichina.com 端口110,SSL 加密端口995 发件服务器地址: SMTP 服务器地址:smtp.mxhichina.com 端口25, SSL 加密端口465 腾讯企业邮箱 POP3/SMTP 协议收发邮件服务器地址分别如下: 接收邮件服务器: POP 服务器地址:pop.exmail.qq.com (端口 110),使用SSL,端口号995 发送邮件服务器: SMTP 服务器地址:smtp.exmail.qq.com (端口 25),使用SSL,端口号465
|
转载自全百科:http://www.quanbaike.com/news/2056.html