php smtp验证,php通过smtp邮件验证登陆的方法

内网的系统为了统一账号,都采用用邮件账号登陆的方式,所以有了以下程序/**

* 通过邮件 验证登陆

* 这里要明白的是用户名是 带域名的:aaa@163.com

*/

function valideEmailLogin($user, $pass, $smtp_server= 'smtp.163.com', $port=25)

{

$handle = fsockopen($smtp_server, $port);

if(!$handle)

return false;

$mes = fgets($handle);

//echo $mes;

if(!$mes){

fclose($handle);

return false;

}

$status = explode(" ",$mes);

if($status[0] != 220) { //链接服务器失败

fclose($handle);

return false;

}

fwrite($handle, 'HELO mystore'."\r\n"); //表明身份,这里的mystore是随便写的

$mes = fgets($handle);

//echo $mes;

if(!$mes){

fclose($handle);

return false;

}

$status = explode(" ",$mes);

if($status[0] != 250) { //服务器HELO失败

fclose($handle);

return false;

}

fwrite($handle, 'AUTH LOGIN'."\r\n");

$mes = fgets($handle);

//echo $mes;

if(!$mes){

fclose($handle);

return false;

}

$status = explode(" ",$mes);

if($status[0] != 334) { //请求验证登陆失败

fclose($handle);

return false;

}

fwrite($handle,base64_encode($user)."\r\n");

$mes = fgets($handle);

//echo $mes;

if(!$mes){

fclose($handle);

return false;

}

$status = explode(" ",$mes);

if($status[0] != 334) { //验证用户名失败

fclose($handle);

return false;

}

fputs($handle,base64_encode($pass)."\r\n");

$mes = fgets($handle);

//echo $mes;

if(!$mes){

fclose($handle);

return false;

}

$status = explode(" ",$mes);

fclose($handle);

if($status[0] != 235) { //验证密码失败

return false;

}else{

return true;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要实现QQ邮箱验证,可以使用PHP编程语言进行操作。下面是一个使用PHP验证QQ邮箱的示例代码: ```php <?php // 获取用户输入的邮箱地址 $email = $_POST['email']; // 正则表达式验证邮箱格式 if (!preg_match("/^[a-zA-Z0-9_\-.]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-.]+$/", $email)) { // 邮箱格式不正确 echo "邮箱格式不正确"; } else { // 使用SMTP协议连接QQ邮箱服务器 $smtpServer = "smtp.qq.com"; $username = "your_qq_email@qq.com"; // QQ邮箱账号 $password = "your_password"; // QQ邮箱密码 try { $smtpConnection = fsockopen($smtpServer, 25, $errno, $errstr, 5); if (!$smtpConnection) { throw new Exception($errstr, $errno); } // 响应码验证 $response = fgets($smtpConnection, 515); if (substr($response, 0, 3) != "220") { throw new Exception("连接服务器失败"); } // 发送验证命令 fputs($smtpConnection, "HELO $smtpServer\r\n"); $response = fgets($smtpConnection, 515); if (substr($response, 0, 3) != "250") { throw new Exception("HELO命令发送失败"); } fputs($smtpConnection, "AUTH LOGIN\r\n"); $response = fgets($smtpConnection, 515); if (substr($response, 0, 3) != "334") { throw new Exception("AUTH LOGIN命令发送失败"); } // 发送邮箱账号 fputs($smtpConnection, base64_encode($username) . "\r\n"); $response = fgets($smtpConnection, 515); if (substr($response, 0, 3) != "334") { throw new Exception("用户名发送失败"); } // 发送邮箱密码 fputs($smtpConnection, base64_encode($password) . "\r\n"); $response = fgets($smtpConnection, 515); if (substr($response, 0, 3) != "235") { throw new Exception("密码发送失败"); } // 发送目标邮箱地址 fputs($smtpConnection, "MAIL FROM: <$email>\r\n"); $response = fgets($smtpConnection, 515); if (substr($response, 0, 3) != "250") { throw new Exception("MAIL FROM命令发送失败"); } // 处理验证结果 $result = $response == "250 OK\r\n" ? "邮箱验证通过" : "邮箱验证失败"; echo $result; // 关闭连接 fputs($smtpConnection, "QUIT\r\n"); fclose($smtpConnection); } catch (Exception $e) { echo $e->getMessage(); } } ?> ``` 首先,通过正则表达式验证用户输入的邮箱格式是否正确。然后,使用SMTP协议连接QQ邮箱服务器,并发送验证命令,包括验证邮箱账号、密码和目标邮箱地址。根据服务器的响应,可以判断邮箱验证是否通过。最后,关闭与服务器的连接。 请注意,代码中的“your_qq_email@qq.com”和“your_password”需要替换为你自己的QQ邮箱账号和密码。另外,由于使用SMTP协议需要与邮件服务器进行交互,因此需要确保服务器上已开启相关的网络端口。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值