Home  >  Article  >  Backend Development  >  php 发邮件,该怎么解决

php 发邮件,该怎么解决

WBOY
WBOYOriginal
2016-06-13 11:10:17760browse

php 发邮件
有介绍php 发邮件原理的介绍吗

(不是要php发邮件的类  是介绍原理的帖子 本地没有 SMTP服务器 )


------解决方案--------------------
发邮件其实就是走 SMTP协议,很简单,就是几句话理解一下
<br />HELO a.com<br />MAIL FROM:<[email&#160;protected]><br />RCPT TO:<[email&#160;protected]><br />DATA<br />SUBJECT:KAKAKKSGL<br /><br />this is content<br />.<br /><br />

然后用PHP中的 socket系列函数就可以了。
Statement:
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