Wordpress使用PHPMailer类,并有一个可以用来配置它的操作挂钩。例如:
add_action( \'phpmailer_init\', \'cyb_smtp_config\' );
function cyb_smtp_config( $phpmailer ) {
$phpmailer->IsSMTP();
$phpmailer->Host = \'smtp.mailer.com\';
$phpmailer->Port = 25;
$phpmailer->Username = \'username\';
$phpmailer->Password = \'password\';
}
请确保您需要自定义SMTP连接,而不是在主机中配置SMTP服务。如果您不确定,请与您的主机提供商联系。