這篇文章主要介紹了詳解thinkphp5+swoole實作非同步郵件群發(SMTP方式),具有一定的參考價值,有興趣的夥伴們可以參考一下
本文介紹了thinkphp5+swoole實現非同步郵件群發(SMTP方式),分享給大家,具體如下:
1、環境說明
Ali雲centos7
thinkphp5.0.11
swoole2.0.8
##2、tp實作郵件傳送
在專案下建立如下的檔案目錄:namespace app\library\utils\mail; use app\library\utils\mail\PhpMailer; use app\library\utils\mail\Smtp; use think\Log; error_reporting(E_STRICT); date_default_timezone_set('Asia/Shanghai'); class SendMail { static function postmail($to,$subject = '',$body = ''){ $mail = new PhpMailer(); $mail->CharSet = config('mail.CharSet'); $mail->IsSMTP(); $mail->SMTPDebug = config('mail.SMTPDebug'); $mail->SMTPAuth = config('mail.SMTPAuth'); $mail->SMTPSecure = config('mail.SMTPSecure'); $mail->Host = config('mail.Host'); $mail->Port = config('mail.Port'); $mail->Username = config('mail.Username'); $mail->Password = config('mail.Password'); $mail->SetFrom(config('mail.From'), config('mail.Name')); $mail->Subject = $subject; $mail->MsgHTML($body); $address = $to; $mail->AddAddress($address, ''); if(!$mail->Send()) { Log::write('send to '.$to.'error info:'.$mail->ErrorInfo); return false; } else { return true; } } }
//邮箱设置 'mail'=>[ 'CharSet'=>'UTF-8', 'SMTPDebug'=>0,// 启用SMTP调试功能 0关闭 'SMTPAuth'=>true,// 启用 SMTP 验证功能 'SMTPSecure'=>'ssl',// 安全协议 'Host'=>'smtp.163.com',// SMTP 服务器 'Port'=>465,// SMTP服务器的端口号 'Username'=>'**********',// SMTP服务器用户名 'Password'=>'**********',// SMTP服务器密码 'From'=>'*********@163.com',// 发件人邮箱 'Name'=>'blue',// 发件人邮箱 ]
2.2 注意點
在此步驟中,我們需要注意幾點:1是你設定的郵件發送的帳號是否已經開啟SMTP並且找對對應的安全協定和端口號。 2.目前伺服器是否支援SMTP服務,這邊很多時候會受一些socket函數的影響,遇到問題的時候,我們應該把SMTPDebug參數設定為1,然後根據debug資訊去細心調試。 3、發出的郵件有些會被放入垃圾箱,注意查收。 2.3 呼叫建立如下的檔案目錄結構:#在Index.php中呼叫傳送郵件的方法,具體程式碼如下public function sendMail(){ if(SendMail::postmail('937069176@qq.com','test','123')){ echo 'send success'; }else{ echo 'send fail'; } }
2.4 呼叫結果
#我們可以在QQ郵箱的垃圾桶中找到我們剛剛發送的一封郵件3、結合swoole實作非同步群發3.1安裝swoole
swoole擴充功能安裝的詳細步驟官網上面都有,不再贅述,swoole文件傳送門3.2實作非同步群發
#我們先實作非同步的服務端:/** * description:服务端 */ public function syncSend(){ $serv = new \swoole_server('0.0.0.0',8082); $serv->set(array('task_worker_num' => 4)); $serv->on('receive', function($serv, $fd, $from_id, $data) { $task_id = $serv->task($data); echo "开始投递异步任务 id=$task_id\n"; }); $serv->on('task', function ($serv, $task_id, $from_id, $data) { echo "接收异步任务[id=$task_id]".PHP_EOL; for ($i = 0 ; $i<20;$i++){ if(SendMail::postmail('937069176@qq.com','test',$data)){ echo 'send'.$i.' success'."\n"; }else{ echo 'send'.$i.' fail'."\n"; } } $serv->finish(''); }); $serv->on('finish', function ($serv, $task_id, $data) { echo "异步任务[id=$task_id]完成".PHP_EOL; }); $serv->start(); }
/** * description:客户端 */ public function index() { $client = new \swoole_client(SWOOLE_SOCK_TCP, SWOOLE_SOCK_SYNC); $ret = $client->connect("127.0.0.1", 8082); if(empty($ret)){ echo 'error!connect to swoole_server failed'; } else { $client->send('blue');//这里只是简单的实现了发送的内容 } }
netstat -apn | grep 8082
kill -9 PID(进程号)
php public/index.php index/index/syncSend
#
php public/index.php index/index/index
#從圖中發送的順序來看,我們可以很容易的判斷,我們已經實現了非同步的發送。
4、後記~
swoole是一種想要熟悉和熟練使用的擴展,但是限於網路程式設計知識的不足,所以還是要多多測驗和學習,demo中有不足的地方,還請指出QAQ###以上是thinkphp5與swoole使用SMTP方式實作非同步郵件群發的實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!