<?php /*邮件发送类 *功能:php socket 使用smtp服务器发送邮件 *作者:longlong *时间:2007-11-26 */ class smtp { /* 全局变量 */ var $smtp_port; var $time_out; var $host_name; var $log_file; var $relay_host; var $debug; var $auth; var $user; var $pass; /* private variables */ var $sock; /* 构造函数 */ function smtp($relay_host = "", $smtp_port = 25, $auth = false, $user, $pass) { $this->debug = false; $this->smtp_port = $smtp_port; $this->relay_host = $relay_host; $this->time_out = 30; //is used in fsockopen() // $this->auth = $auth; //auth $this->user = $user; $this->pass = $pass; // $this->host_name = "localhost"; //is used in helo command $this->log_file = ""; $this->sock = false; } /* 主函数,发送邮件 */ function sendmail($flag, $boundary, $to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "") { $mail_from = $this->get_address($this->strip_comment($from)); $body = ereg_replace("(^|(rn))(.)", "1.3", $body); $header = "mime-version:1.0rn"; //* if ($mailtype == "html") { //echo $boundary;exit; if ($flag == 2) { $header.= "content-type:multipart/mixed; boundary= $boundaryrn"; //$header .= "content-type:text/htmlrn"; } else { $header.= "content-type:text/htmlrn"; } } //*/ $header.= "to: " . $to . "rn"; if ($cc != "") { $header.= "cc: " . $cc . "rn"; } $header.= "from: $from<" . $from . ">rn"; $header.= "subject: " . $subject . "rn"; $header.= $additional_headers; $header.= "date: " . date("r") . "rn"; $header.= "x-mailer:by redhat (php/" . phpversion() . ")rn"; //$header.=$body;//edit by shaolong list($msec, $sec) = explode(" ", microtime()); $header.= "message-id: <" . date("ymdhis", $sec) . "." . ($msec * 1000000) . "." . $mail_from . ">rn"; $to = explode(",", $this->strip_comment($to)); if ($cc != "") { $to = array_merge($to, explode(",", $this->strip_comment($cc))); } if ($bcc != "") { $to = array_merge($to, explode(",", $this->strip_comment($bcc))); } $sent = true; foreach ($to as $rcpt_to) { $rcpt_to = $this->get_address($rcpt_to); if (!$this->smtp_sockopen($rcpt_to)) { $this->log_write("error: cannot send email to " . $rcpt_to . "n"); $sent = false; continue; } if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) { $this->log_write("e-mail has been sent to <" . $rcpt_to . ">n"); } else { $this->log_write("error: cannot send email to <" . $rcpt_to . ">n"); $sent = false; } fclose($this->sock); $this->log_write("disconnected from remote hostn"); } return $sent; } /* 私有函数 */ function smtp_send($helo, $from, $to, $header, $body = "") { if (!$this->smtp_putcmd("helo", $helo)) { return $this->smtp_error("sending helo command"); } //auth if ($this->auth) { if (!$this->smtp_putcmd("auth login", base64_encode($this->user))) { return $this->smtp_error("sending helo command"); } if (!$this->smtp_putcmd("", base64_encode($this->pass))) { return $this->smtp_error("sending helo command"); } } // if (!$this->smtp_putcmd("mail", "from:<" . $from . ">")) { return $this->smtp_error("sending mail from command"); } if (!$this->smtp_putcmd("rcpt", "to:<" . $to . ">")) { return $this->smtp_error("sending rcpt to command"); } if (!$this->smtp_putcmd("data")) { return $this->smtp_error("sending data command"); } if (!$this->smtp_message($header, $body)) { return $this->smtp_error("sending message"); } if (!$this->smtp_eom()) { return $this->smtp_error("sending <cr><lf>.<cr><lf> [eom]"); } if (!$this->smtp_putcmd("quit")) { return $this->smtp_error("sending quit command"); } return true; } function smtp_sockopen($address) { if ($this->relay_host == "") { return $this->smtp_sockopen_mx($address); } else { return $this->smtp_sockopen_relay(); } } function smtp_sockopen_relay() { $this->log_write("trying to " . $this->relay_host . ":" . $this->smtp_port . "n"); $this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out); if (!($this->sock && $this->smtp_ok())) { $this->log_write("error: cannot connenct to relay host " . $this->relay_host . "n"); $this->log_write("error: " . $errstr . " (" . $errno . ")n"); return false; } $this->log_write("connected to relay host " . $this->relay_host . "n"); return true; } function smtp_sockopen_mx($address) { $domain = ereg_replace("^.+@([^@]+)$", "1", $address); if (!@getmxrr($domain, $mxhosts)) { $this->log_write("error: cannot resolve mx "".$domain.""n"); return false; } foreach ($mxhosts as $host) { $this->log_write("trying to " . $host . ":" . $this->smtp_port . "n"); $this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out); if (!($this->sock && $this->smtp_ok())) { $this->log_write("warning: cannot connect to mx host " . $host . "n"); $this->log_write("error: " . $errstr . " (" . $errno . ")n"); continue; } $this->log_write("connected to mx host " . $host . "n"); return true; } $this->log_write("error: cannot connect to any mx hosts (" . implode(", ", $mxhosts) . ")n"); return false; } function smtp_message($header, $body) { fputs($this->sock, $header . "rn" . $body); $this->smtp_debug("> " . str_replace("rn", "n" . "> ", $header . "n> " . $body . "n> ")); return true; } function smtp_eom() { fputs($this->sock, "rn.rn"); $this->smtp_debug(". [eom]n"); return $this->smtp_ok(); } function smtp_ok() { $response = str_replace("rn", "", fgets($this->sock, 512)); $this->smtp_debug($response . "n"); if (!ereg("^[23]", $response)) { fputs($this->sock, "quitrn"); fgets($this->sock, 512); $this->log_write("error: remote host returned "".$response.""n"); return false; } return true; } function smtp_putcmd($cmd, $arg = "") { if ($arg != "") { if ($cmd == "") $cmd = $arg; else $cmd = $cmd . " " . $arg; } fputs($this->sock, $cmd . "rn"); $this->smtp_debug("> " . $cmd . "n"); return $this->smtp_ok(); } function smtp_error($string) { $this->log_write("error: error occurred while " . $string . ".n"); return false; } function log_write($message) { $this->smtp_debug($message); if ($this->log_file == "") { return true; } $message = date("m d h:i:s ") . get_current_user() . "[" . getmypid() . "]: " . $message; if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) { $this->smtp_debug("warning: cannot open log file "".$this->log_file.""n"); return false;; } flock($fp, lock_ex); fputs($fp, $message); fclose($fp); return true; } function strip_comment($address) { $comment = "([^()]*)"; while (ereg($comment, $address)) { $address = ereg_replace($comment, "", $address); } return $address; } function get_address($address) { $address = ereg_replace("([ trn])+", "", $address); $address = ereg_replace("^.*<(.+)>.*$", "1", $address); return $address; } function smtp_debug($message) { if ($this->debug) { echo $message; } } }
本文地址:
转载随意,但请附上文章地址:-)

一、基于TCP协议的socket套接字编程1、套接字工作流程先从服务器端说起。服务器端先初始化Socket,然后与端口绑定(bind),对端口进行监听(listen),调用accept阻塞,等待客户端连接。在这时如果有个客户端初始化一个Socket,然后连接服务器(connect),如果连接成功,这时客户端与服务器端的连接就建立了。客户端发送数据请求,服务器端接收请求并处理请求,然后把回应数据发送给客户端,客户端读取数据,最后关闭连接,一次交互结束,使用以下Python代码实现:importso

本篇文章给大家带来了关于php+socket的相关知识,其中主要介绍了IO多路复用,以及php+socket如何实现web服务器?感兴趣的朋友下面一起来看一下,希望对大家有帮助。

SpringBoot端第一步,引入依赖首先我们需要引入WebSocket所需的依赖,以及处理输出格式的依赖com.alibabafastjson1.2.73org.springframework.bootspring-boot-starter-websocket第二步,创建WebSocket配置类importorg.springframework.context.annotation.Bean;importorg.springframework.context.annotation.Config

php socket无法连接的解决办法:1、检查php是否开启socket扩展;2、打开php.ini文件,检查“php_sockets.dll”是否被加载;3、取消“php_sockets.dll”的注释状态即可。

本篇文章给大家带来了关于php+socket的相关知识,其中主要介绍了什么是socket?php+socket如何实现客户端与服务端数据传输?感兴趣的朋友下面一起来看一下,希望对大家有帮助。

随着互联网的发展,文件传输成为人们日常工作和娱乐中不可或缺的一部分。然而,传统的文件传输方式如邮件附件或文件分享网站存在一定的限制,无法满足实时性和安全性的需求。因此,利用PHP和Socket技术实现实时文件传输成为了一种新的解决方案。本文将介绍利用PHP和Socket技术实现实时文件传输的技术原理、优点和应用场景,并通过具体案例来演示该技术的实现方法。技术

C#中常见的网络通信和安全性问题及解决方法在当今互联网时代,网络通信已经成为了软件开发中必不可少的一部分。在C#中,我们通常会遇到一些网络通信的问题,例如数据传输的安全性、网络连接的稳定性等。本文将针对C#中常见的网络通信和安全性问题进行详细讨论,并提供相应的解决方法和代码示例。一、网络通信问题网络连接中断:网络通信过程中,可能会出现网络连接的中断,这会导致

本篇文章给大家带来了关于php+socket的相关知识,其中主要介绍了怎么使用php原生socket实现一个简易的web聊天室?感兴趣的朋友下面一起来看一下,希望对大家有帮助。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

mPDF
mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。