search
Homephp教程php手册[php]php curl smtp发送邮件

[php]php curl smtp发送邮件

Jun 13, 2016 am 10:50 AM
curlfsockopenphpsmtpcloudusecompanyclosesendplatformBundleofwantmail

公司的云平台把fsockopen关掉了,如果要使用smtp外网的邮箱来发送邮件的话 只能试试使用curl来进行了
先google了一下,发现很多问相关问题的但没有相关的解答,在phpclasses里也没有找到相关的类于是自己边看stmp的相关协议边开始尝试curl
SMTP协议
这个在网上可以找到多相关的例子,可以自己实验一下使用telnet去连接mail服务器
 
$ telnet 邮箱SMTP服务地址 25
Trying 邮箱服务IP地址...
Connected to 邮箱SMTP服务地址.
Escape character is '^]'.
220 exchange邮箱服务器地址 Microsoft ESMTP MAIL Service ready at Sat, 2 Jun 2012 15:02:12 +0800
EHLO 127.0.0.1
250-exchange邮箱服务器地址 Hello [邮箱服务IP地址]
250-SIZE
250-PIPELINING
250-DSN
250-ENHANCEDSTATUSCODES
250-X-ANONYMOUSTLS
250-AUTH NTLM LOGIN
250-X-EXPS GSSAPI NTLM
250-8BITMIME
250-BINARYMIME
250-CHUNKING
250-XEXCH50
250 XRDST
AUTH LOGIN
334 VXNlcm5hbWU6
用户名(base64_encode)
334 UGFzc3dvcmQ6
密码(base64_encode)
235 2.7.0 Authentication successful
MAIL FROM:发件箱地址
250 2.1.0 Sender OK
RCPT TO:收件箱地址
250 2.1.5 Recipient OK
DATA
354 Start mail input; end with .
要发送的内容(这里的相关的规范有很多)
.
250 2.6.0 Queued mail for delivery
QUIT
221 2.0.0 Service closing transmission channel
Connection closed by foreign host.
 
php测试代码:
 
 1  2 header("content-type:text/html;charset=utf-8");
 3 $smtp = array(
 4     "url"      => "邮箱SMTP服务器地址",
 5     "port"     => "邮箱SMTP服务器端口", // 一般为25
 6     "username" => "用户名",
 7     "password" => "密码",
 8     "from"     => "发件地址",
 9     "to"       => "收件地址",
10     "subject"  => "测试一下标题",
11     "body"     => "测试一下内容"
12 );
13
14 $CRLF = "\r\n";
15 $test = "";
16 $curl = curl_init();
17
18 curl_setopt($curl, CURLOPT_URL, $smtp['url']);
19 curl_setopt($curl, CURLOPT_PORT, $smtp['port']);
20 curl_setopt($curl, CURLOPT_TIMEOUT,10);
21
22 function inlineCode($str){
23         $str = trim($str);
24         return $str?'=?UTF-8?B?'.base64_encode($str).'?= ':'';
25 }
26
27 function buildHeader($headers){
28     $ret = '';
29     foreach($headers as $k=>$v){
30         $ret.=$k.': '.$v."\n";
31     }
32     return $ret;
33 }
34
35 //
36 $header = array(
37     'Return-path'=>'',
38     'Date'=>date('r'),
39     'From'=> '',
40     'MIME-Version'=>'1.0',
41     'Subject'=>inlineCode($smtp['subject']),
42     'To'=>$smtp['to'],
43     'Content-Type'=>'text/html; charset=UTF-8; format=flowed',
44     'Content-Transfer-Encoding'=>'base64'
45 );
46 $data = buildHeader($header).$CRLF.chunk_split(base64_encode($smtp['body']));
47
48
49 $content  = "EHLO ".$smtp["url"].$CRLF; // 先得hello一下
50 $content .= "AUTH LOGIN".$CRLF.base64_encode($smtp["username"]).$CRLF.base64_encode($smtp["password"]).$CRLF; // 验证登陆
51 $content .= "MAIL FROM:".$smtp["from"].$CRLF; // 发件地址
52 $content .= "RCPT TO:".$smtp["to"].$CRLF;  // 收件地址
53 $content .= "DATA".$CRLF.$data.$CRLF.".".$CRLF; // 发送内容
54 $content .= "QUIT".$CRLF; // 退出
55
56 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);    // curl接收返回数据
57 curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $content);
58 $test = curl_exec($curl);
59 var_dump($test);
60 echo "
\r\n";
61 var_dump($content);
62
63 // 结束
64 curl_close($curl);
 
以上只是测试的php
包测试+修改花了近6个小时让产品的代码兼容了fsockopen和curl
 
以后有空写个兼容fsockopen和curl简单发送邮件的smtp类
think in coding

 

 

摘自 bluefrog

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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool