代码一样的,只是改下SMTP服务器地址就行了。
相比用QQ邮箱,用企业邮箱还更简单一点,不需要多去设置个密码。
阿里云企业邮箱SMTP服务器地址:smtp.mxhichina.com
腾讯云企业邮箱SMTP服务器地址:smtp.exmail.qq.com
QQ邮箱SMTP服务器地址:smtp.qq.com
function mail_smtp( $phpmailer ){ $phpmailer->IsSMTP(); //使用SMTP发送 $phpmailer->SMTPAuth = true; //启用SMTPAuth服务 $phpmailer->FromName = "顺便写"; //发件人昵称 $phpmailer->Host = ""; //SMTP服务器地址 $phpmailer->Port = 465; //SMTP端口 $phpmailer->SMTPSecure = "ssl"; //SMTP加密方式 $phpmailer->From = "邮箱帐号就行"; //发件人 $phpmailer->Username = "邮箱帐号"; //邮箱帐号 $phpmailer->Password = ''; //邮箱密码 } add_action('phpmailer_init','mail_smtp');