Home Backend Development PHP Tutorial 用Socket发送电子邮件--续篇smtp认证_PHP

用Socket发送电子邮件--续篇smtp认证_PHP

Jun 01, 2016 pm 12:35 PM
amp information send e-mail Certification

SMTP

作者limodou 



  在前面我曾经写过一篇文章介绍了如何利用socket编程来发送邮件以解决web服务器不支

持mail
()函数的问题。经过我的测试也是可以使用的。但目前众多的免费邮件提供商从263开

163新浪网也快开始了均在smtp功能上增加了认证功能使得原邮件发送类无法使用。在

经过对相应smtp后续rfc的学习之后
经过了多次的试验我终于试验成功了。于是怀着急迫的心

情向大家介绍。
 



SMTP 认证功能介绍 

  此处不想向你详细介绍SMTP认证功能因为我也说不清楚详细的请参考[RFC 2554]规范。

SMTP的认证功能主要是增加了AUTH命令。AUTH命令有多种用法
而且有多种认证机制。AUTH支持

的认证机制主要有LOGIN
CRAM-MD5[注1]等。LOGIN应该是大多数免费邮件服务器都支持的263

与新浪都支持。而新浪还支持CRAM
-MD5机制。认证机制一般只在真正发送邮件之前进行而且只

需要执行一次。当认证成功后
即可按原来正常的处理发送邮件。原理是口令-应答(Challenge-

Response)即由服务器发送命令要求客户端回答客户端根据服务器发送信息进行回答如果应

答通过了
则认证成功即可继续处理。下面对这两种制作一个简单介绍。S:表示服务器返回

C:表示客户端发送。 





LOGIN 

它应该比较简单。口令-应答过程如下 



1 C: AUTH LOGIN 

2 S: 334 dXNlcm5hbWU6 

3 C: dXNlcm5hbWU6 

4 S: 334 cGFzc3dvcmQ6 

5 C: cGFzc3dvcmQ6 

6 S: 235 Authentication successful. 

1 为客户端向服务器发送认证指令。 

2 服务端返回base64编码串成功码为334。编码字符串解码后为“username:说明要求客户

端发送用户名。
 

3 客户端发送用base64编码的用户名此处为“username:”。 

4 服务端返回base64编码串成功码为334。编码字符串解码后为“password:说明要求客户

端发送用户口令。
 

5 客户端发送用base64编码的口令此处为“password:”。 

6 成功后服务端返回码为235表示认证成功可以发送邮件了。 



对于LOGIN方式认证其实就是将用户名与口令用base64进行编码根据服务器的要求分别发出

即可。
(就我看来由于base64是一种公共的编码标准也起不到太大的保护作用。) 

CRAM-MD5机制 

关于CRAM-MD5的机制可以参考[RFC 2195]规范这里不详细说明了。主要就是通过口令-回答机

由服务端发出一个信息串这个由随机数时间戳服务器地址构成并且用base64编码。

客户端收到后
发送一个由用户名加一个空格再加一个摘要构成的串并用base64编码。摘

要是通过MD5算法求出。这种机制要求服务端与客户端有相同的加密串。当客户端发送摘要后


务器对其合法性进行验证
成功后返回235。 

如何得知邮件服务器支持什么认证 

  在smtp的[RFC 821]在与邮件服务器连接成功后第一个命令一般是“HELO”。但是在支

持认证的邮件服务器中
第一个命令应改为“EHLO”[注2]。在命令成功后263的返回可能为 



EHLO hello 

250-smtp.263.net [注3] 

250-PIPELINING 

250-SIZE 10240000 

250-ETRN 

250-AUTH LOGIN 

250 8BITMIME 

  从而可以看到263支持LOGIN方式认证。当然如果你已经知道邮件服务器是什么方式也没

有必要自动进行判断
但是如果不知道就需要分析这个返回结果了。不过大部分的邮件服务器

都支持最简单的LOGIN方式。
 



  好了下面开始对以前所写的sendmail.class.php3进行修改。你没有不要紧本文在最后提

供了sendmail
.class.php3的打包文件可以下载。至于例子则自已根据本文进行编写。 



修改sendmail.class.php3 

  此处只说出修改的重点而不是全面的分析。 



  首先回顾一下sendmail.class.php3的思路让大家先心中有数。 



  sendmail.class.php3一共有四个函数分别为 



send_mail 类的构造函数用于信息的初始化 

send 邮件发送函数执行socket命令发送邮件 

do_command 命令执行函数执行一条smtp命令并将处理返回结果 

show_debug 显示调示信息函数 

  首先用户应先调用类的构造函数对必要的参数进行初始化。如smtp服务器地址($smtp)

迎信息
($welcome)及是否显示调示信息($debug)。同时还要初始化一些内部变量如最后执行

命令
($lastact)最后响应信息($lastmessage)及端口号($port=25) 



  然后用户生成邮件信息并调用send()函数发送邮件。在send()函数中根据smtp规范

一条命令接一条命令执行(详情参见前面的文章)。在执行命令时是通过调用do_command()来实

现的。如果do_command
()执行出错则程序立即返回否则继续向下执行。如果设置了显示调示

信息标志
则do_command()在命令发送和信息响应时会返回调示信息。 



  好了大家已经对它的运行有了一个了解下面就是如何修改了。 



  修改构造函数(send_mail) 

  由于以前的send_mail类不支持认证功能所以先要增加认证信息。增加了三个参数

$auth $authuser和$authpasswd。$auth是一个标志表示是否要使用认证功能。$authuser

和$authpasswd是smtp认证的用户名和口令
根据相应的邮件服务商的要求例如263是同pop3相

一致。大部分应该也是如此。这样
同时需要在类的内部变量表后面增加三个内部变量$auth

$user$passwd。 



  修改发送函数(send) 

  将发送命令HELO改为发送EHLO。同时要加入判断是否要进行认证处理 



//改为支持ESMTP EHLO命令 

if($this->auth) 

 

else 

$this->lastact="HELO "; 

  即如果需要认证处理则发送EHLO命令否则还发送HELO命令。 



  然后增加认证处理 



//2000.02.28 增加认证处理 

if($this->auth) 

 



//回传用户名用base64编码 

$this->lastact=base64_encode($this->user) . "

"
; 

if(!$this->do_command($this->lastact, "334")) 

 



//回传口令用base64编码 

$this->lastact=base64_encode($this->passwd) . "

"
; 

if(!$this->do_command($this->lastact, "235")) 

 

} 

  注意这里只实现了AUTH LOGIN机制CRAM-MD5没有实现。而且对服务器传回的信息没有判

默认为第一次要求用户名第二次要求口令。 



  修改命令执行函数(do_command) 

  原函数不能显示当响应串为多行的情况。修改为 



/* 2000.02.28 修改,将返回信息显示完全 
$this->lastmessage = fgets ( $this->fp, 512 ); 

$this->show_debug($this->lastmessage, "in"); 

*/
 

while(true) 

 

  这样类就改好了。 



测试send_mail类 

  下面是我编写的一个测试小程序用于发送一封信但是为了安全起见我将用户名及口令

没有用真实信息
如果大家想要测试请改成你自已的信息。程序如下(send.php) 



<? 

include("sendmail.class.php3"); 



$sendmail=new send_mail("smtp.263.net", true, "username", "password", "hello", 

true); 

$sendmail->send("toemail, "fromemail", "test", "This is a test!"); 

?> 

结论 

  对于263的测试很顺利也比较快。但是新浪网则不容易成功主要是超时而且发成功也收

不着
不知为何 



  注意由于发送smtp需要用户名及口令且大部分的smtp认证使用与pop3相同的用户名和口

令。所以如果大家使用这个方法
可能会把用户名和口令写入程序上传到服务器。但是这样做

是不安全的。加密也不一定好用
因为信息放在服务器上相应的解密信息也会放到服务器上。

我的建议是
再申请一个专门用来发信用的信箱这样别人知道了也不怕。 



  希望这个程序对你有用。sendmail.class.php3下载。 



相关的RFC 



RFC 1869 SMTP Service Extensions 

RFC 2195 IMAP/POP AUTHorize Extension(里面有关于CRAM-MD5的说明) 

RFC 2222 Simple Authentication and Security Layer 

RFC 2554 SMTP Service Extension for Authentication 



-------------------------------------------------------------------------------- 

[注1] 

CRAM=Challenge-Response Authentication Mechanism 口令-应答认证机制 

MD5是一种摘要算法主要用于RSAPGP中。 

[注2] 

关于EHLO的说明参见[RFC 1869] 

[注3] 

在邮件服务器应答串中如果应响码后面跟空格( )表示应答串只有一行如果为减号(-)

表示有多行且最后一行响应码后面为空格( ) 

本文所有权属于limodou。如要转载请保留此信息。 





注意sendmail.class.php3下载地址 

http://www.zphp.com/files/sendmail.cl
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to remove author and last modified information in Microsoft Word How to remove author and last modified information in Microsoft Word Apr 15, 2023 am 11:43 AM

Microsoft Word documents contain some metadata when saved. These details are used for identification on the document, such as when it was created, who the author was, date modified, etc. It also has other information such as number of characters, number of words, number of paragraphs, and more. If you might want to remove the author or last modified information or any other information so that other people don't know the values, then there is a way. In this article, let’s see how to remove a document’s author and last modified information. Remove author and last modified information from Microsoft Word document Step 1 – Go to

How to sort emails by sender, subject, date, category, size in Outlook How to sort emails by sender, subject, date, category, size in Outlook Feb 19, 2024 am 10:48 AM

Outlook offers many settings and features to help you manage your work more efficiently. One of them is the sorting option that allows you to categorize your emails according to your needs. In this tutorial, we will learn how to use Outlook's sorting feature to organize emails based on criteria such as sender, subject, date, category, or size. This will make it easier for you to process and find important information, making you more productive. Microsoft Outlook is a powerful application that makes it easy to centrally manage your email and calendar schedules. You can easily send, receive, and organize email, while built-in calendar functionality makes it easy to keep track of your upcoming events and appointments. How to be in Outloo

What happens when you use Hide My Email on iPhone? What happens when you use Hide My Email on iPhone? Feb 22, 2024 pm 09:19 PM

Apple offers a privacy-focused feature called "Hide Email Address" that allows users to hide their real email addresses on apps or websites that require account registration. We've taught you how to use this feature on your iPhone, now let's take a look at what's possible when using it in your daily work. What is a hidden email address on iPhone? The purpose of the Hide Email Address feature is to protect the privacy of your email address. By providing a temporary email address for application and website registration, you do not need to directly provide a person's real email address. This feature allows you to generate multiple iCloud email addresses for signing up with different services, thus avoiding revealing your true email address.

1.1.1.1 How to log in to the online authentication system 1.1.1.1 How to log in to the online authentication system Apr 20, 2023 am 10:44 AM

1.1.1.1 Login method for the Internet authentication system: 1. Search for the campus network wireless signal and connect; 2. Open the browser and select "Self-Service" on the pop-up authentication interface; 3. Enter the user name and initial password to log in; 4. Complete Personal information and set a strong password.

WhatsApp Tips: How to Send HD Photos and Videos WhatsApp Tips: How to Send HD Photos and Videos Sep 10, 2023 am 10:13 AM

WhatsApp has launched a new option that allows users to send photos and videos in high resolution through the messaging platform. Read on to find out how it's done. WhatsApp has released an update that allows iPhone and Android users to send photos and videos in high resolution, finally addressing the service's low-quality media sharing limitations. The option is called "HD Quality" and means users can send clearer photos and videos with minimal compression. For example, images captured on the iPhone can now be sent at 3024x4032 resolution instead of the previous maximum of 920x1280, while videos can be sent at 1280×718 resolution instead of 848×476.

How to send files to others on TikTok? How to delete files sent to others? How to send files to others on TikTok? How to delete files sent to others? Mar 22, 2024 am 08:30 AM

On Douyin, users can not only share their life details and talents, but also interact with other users. In this process, sometimes we need to send files to other users, such as pictures, videos, etc. So, how to send files to others on Douyin? 1. How to send files to others on Douyin? 1. Open Douyin and enter the chat interface where you want to send files. 2. Click the "+" sign in the chat interface and select "File". 3. In the file options, you can choose to send pictures, videos, audio and other files. After selecting the file you want to send, click "Send". 4. Wait for the other party to accept your file. Once the other party accepts it, the file will be transferred successfully. 2. How to delete files sent to others on Douyin? 1. Open Douyin and enter the text you sent.

How to use ThinkPHP6 for JWT authentication? How to use ThinkPHP6 for JWT authentication? Jun 12, 2023 pm 12:18 PM

JWT (JSONWebToken) is a lightweight authentication and authorization mechanism that uses JSON objects as security tokens to securely transmit user identity information between multiple systems. ThinkPHP6 is an efficient and flexible MVC framework based on PHP language. It provides many useful tools and functions, including JWT authentication mechanism. In this article, we will introduce how to use ThinkPHP6 for JWT authentication to ensure the security and reliability of web applications

How to implement a simple email sending program using C++? How to implement a simple email sending program using C++? Nov 02, 2023 pm 05:35 PM

How to implement a simple email sending program using C++? With the popularity of the Internet, email has become an indispensable part of people's daily life and work. In C++ programming, we can use the SMTP (SimpleMailTransferProtocol) protocol to implement a simple email sending program. This article will introduce how to write a basic email sending program using C++. First, we need to prepare some tools and libraries to implement our program. first

See all articles