search
HomeBackend DevelopmentPHP TutorialPHP supports sending classes for sending HTML format emails

  1. /**
  2. * Email sending class
  3. * Supports sending plain text emails and HTML format emails
  4. * @example
  5. * $config = array(
  6. * "from" => "*****",
  7. * "to" = > "***",
  8. * "subject" => "test",
  9. * "body" => "test",
  10. * "username" => "* **",
  11. * "password" => "****",
  12. * "isHTML" => true
  13. * );
  14. *
  15. * $mail = new MySendMail();
  16. *
  17. * $mail ->setServer("smtp.126.com");
  18. *
  19. * $mail->setMailInfo($config);
  20. * if(!$mail->sendMail()) {
  21. * echo $mail- >error();
  22. * return 1;
  23. * }
  24. */
  25. class MySendMail{
  26. /**
  27. * @var Mail transfer agent username
  28. * @access private
  29. */
  30. private $_userName;
  31. /**
  32. * @var Mail transfer agent password
  33. * @access private
  34. */
  35. private $_password;
  36. /**
  37. * @var Mail transfer proxy server address
  38. * @access protected
  39. */
  40. protected $_sendServer;
  41. /**
  42. * @var Mail transfer proxy server port
  43. * @access protected
  44. */
  45. protected $_port=25;
  46. /**
  47. * @var sender
  48. * @access protected
  49. */
  50. protected $_from;
  51. /**
  52. * @var recipient
  53. * @access protected
  54. */
  55. protected $_to;
  56. /**
  57. * @var theme
  58. * @access protected
  59. */
  60. protected $_subject;
  61. /**
  62. * @var Email text
  63. * @access protected
  64. */
  65. protected $_body;
  66. /**
  67. * @var Whether it is an email in HTML format
  68. * @access protected
  69. */
  70. protected $_isHTML=true;
  71. /**
  72. * @var socket resource
  73. * @access protected
  74. */
  75. protected $_socket;
  76. /**
  77. * @var error message
  78. * @access protected
  79. */
  80. protected $_errorMessage;
  81. public function __construct($from="", $to="", $subject="", $body="", $server="", $username="", $password="",$isHTML="", $port="") {
  82. if(!empty($from)){
  83. $this->_from = $from;
  84. }
  85. if(!empty($to)){
  86. $this->_to = $to;
  87. }
  88. if(!empty($subject)){
  89. $this->_subject = $subject;
  90. }
  91. if(!empty($body)){
  92. $this->_body = $body;
  93. }
  94. if(!empty($isHTML)){
  95. $this->_isHTML = $isHTML;
  96. }
  97. if(!empty($server)){
  98. $this->_sendServer = $server;
  99. }
  100. if(!empty($port)){
  101. $this->_port = $port;
  102. }
  103. if(!empty($username)){
  104. $this->_userName = $username;
  105. }
  106. if(!empty($password)){
  107. $this->_password = $password;
  108. }
  109. }
  110. /**
  111. * Set up the mail transfer proxy
  112. * @param string $server The IP or domain name of the proxy server
  113. * @param int $port The port of the proxy server, SMTP default port 25
  114. * @param int $localPort The local port
  115. * @return boolean
  116. */
  117. public function setServer($server, $port=25) {
  118. if(!isset($server) || empty($server) || !is_string($server)) {
  119. $this->_errorMessage = "first one is an invalid parameter";
  120. return false;
  121. }
  122. if(!is_numeric($port)){
  123. $this->_errorMessage = "first two is an invalid parameter";
  124. return false;
  125. }
  126. $this->_sendServer = $server;
  127. $this->_port = $port;
  128. return true;
  129. }
  130. /**
  131. * Set up email
  132. * @access public
  133. * @param array $config Email configuration information
  134. * Contains email sender, recipient, subject, content, verification information of mail transfer agent
  135. * @return boolean
  136. */
  137. public function setMailInfo($config) {
  138. if(!is_array($config) || count($config) $this->_errorMessage = "parameters are required";
  139. return false;
  140. }
  141. $this->_from = $config['from'];
  142. $this->_to = $config['to'];
  143. $this->_subject = $config['subject'];
  144. $this->_body = $config['body'];
  145. $this->_userName = $config['username'];
  146. $this->_password = $config['password'];
  147. if(isset($config['isHTML'])){
  148. $this->_isHTML = $config['isHTML'];
  149. }
  150. return true;
  151. }
  152. /**
  153. * Send email
  154. * @access public
  155. * @return boolean
  156. */
  157. public function sendMail() {
  158. $command = $this->getCommand();
  159. $this->socket();
  160. foreach ($command as $value) {
  161. if($this->sendCommand($value[0], $value[1])) {
  162. continue;
  163. }
  164. else{
  165. return false;
  166. }
  167. }
  168. $this->close(); //其实这里也没必要关闭,smtp命令:QUIT发出之后,服务器就关闭了连接,本地的socket资源会自动释放
  169. echo 'Mail OK!';
  170. return true;
  171. }
  172. /**
  173. * Return error message
  174. * @return string
  175. */
  176. public function error(){
  177. if(!isset($this->_errorMessage)) {
  178. $this->_errorMessage = "";
  179. }
  180. return $this->_errorMessage;
  181. }
  182. /**
  183. * Return mail command
  184. * @access protected
  185. * @return array
  186. */
  187. protected function getCommand() {
  188. if($this->_isHTML) {
  189. $mail = "MIME-Version:1.0rn";
  190. $mail .= "Content-type:text/html;charset=utf-8rn";
  191. $mail .= "FROM:test_from . ">rn";
  192. $mail .= "TO:_to . ">rn";
  193. $mail .= "Subject:" . $this->_subject ."rnrn";
  194. $mail .= $this->_body . "rn.rn";
  195. }
  196. else{
  197. $mail = "FROM:test_from . ">rn";
  198. $mail .= "TO:_to . ">rn";
  199. $mail .= "Subject:" . $this->_subject ."rnrn";
  200. $mail .= $this->_body . "rn.rn";
  201. }
  202. $command = array(
  203. array("HELO sendmailrn", 250),
  204. array("AUTH LOGINrn", 334),
  205. array(base64_encode($this->_userName) . "rn", 334),
  206. array(base64_encode($this->_password) . "rn", 235),
  207. array("MAIL FROM:_from . ">rn", 250),
  208. array("RCPT TO:_to . ">rn", 250),
  209. array("DATArn", 354),
  210. array($mail, 250),
  211. array("QUITrn", 221)
  212. );
  213. return $command;
  214. }
  215. /**
  216. * @access protected
  217. * @param string $command SMTP command sent to the server
  218. * @param int $code Do you expect the response returned by the server?
  219. * @param boolean
  220. */
  221. protected function sendCommand($command, $code) {
  222. echo 'Send command:' . $command . ',expected code:' . $code . '
    ';
  223. //发送命令给服务器
  224. try{
  225. if(socket_write($this->_socket, $command, strlen($command))){
  226. //读取服务器返回
  227. $data = trim(socket_read($this->_socket, 1024));
  228. echo 'response:' . $data . '

    ';
  229. if($data) {
  230. $pattern = "/^".$code."/";
  231. if(preg_match($pattern, $data)) {
  232. return true;
  233. }
  234. else{
  235. $this->_errorMessage = "Error:" . $data . "|**| command:";
  236. return false;
  237. }
  238. }
  239. else{
  240. $this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
  241. return false;
  242. }
  243. }
  244. else{
  245. $this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
  246. return false;
  247. }
  248. }catch(Exception $e) {
  249. $this->_errorMessage = "Error:" . $e->getMessage();
  250. }
  251. }
  252. /**
  253. * Establish a network connection to the server
  254. * @access private
  255. * @return boolean
  256. */
  257. private function socket() {
  258. if(!function_exists("socket_create")) {
  259. $this->_errorMessage = "extension php-sockets must be enabled";
  260. return false;
  261. }
  262. //创建socket资源
  263. $this->_socket = socket_create(AF_INET, SOCK_STREAM, getprotobyname('tcp'));
  264. if(!$this->_socket) {
  265. $this->_errorMessage = socket_strerror(socket_last_error());
  266. return false;
  267. }
  268. //连接服务器
  269. if(!socket_connect($this->_socket, $this->_sendServer, $this->_port)) {
  270. $this->_errorMessage = socket_strerror(socket_last_error());
  271. return false;
  272. }
  273. socket_read($this->_socket, 1024);
  274. return true;
  275. }
  276. /**
  277. * 关闭socket
  278. * @access private
  279. * @return boolean
  280. */
  281. private function close() {
  282. if(isset($this->_socket) && is_object($this->_socket)) {
  283. $this->_socket->close();
  284. return true;
  285. }
  286. $this->_errorMessage = "no resource can to be close";
  287. return false;
  288. }
  289. }
  290. /**************************** Test ***********************************/
  291. $config = array(
  292. "from" => "********@163.com",
  293. "to" => "******@163.com",
  294. "subject" => "test",
  295. "body" => "test",
  296. "username" => "******",
  297. "password" => "password",
  298. );
  299. $mail = new MySendMail();
  300. $mail->setServer("smtp.163.com");
  301. $mail->setMailInfo($config);
  302. if(!$mail->sendMail()){
  303. echo $mail->error();
  304. return 1;
  305. }
复制代码

PHP, HTML


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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool