Home Backend Development PHP Tutorial How to correctly use PHP to send emails_PHP Tutorial

How to correctly use PHP to send emails_PHP Tutorial

Jul 15, 2016 pm 01:31 PM
mail php code function send how application correct of Example use mail

Application code example of PHP email function:

  1. #echo send_mail($_POST["email"],$tosubject,$_POST["errortext"]);
  2. echo send_mail('someone@126.com','only a test mail for test php mail function','a spam mail');
  3. echo time();
  4. function send_mail($to, $subject = 'No subject', $body) {
  5. $loc_host = "mail .server"; //Sending computer name, feel free to
  6. $smtp_acc = "smp@163.com"; //Smtp authenticated username
  7. $smtp_pass= "pwdpwd"; //Smtp authentication password, generally equivalent to pop3 password
  8. $smtp_host ="smtp.163.com"; //SMTP server address, similar to smtp.tom.com
  9. $from="smp@163.com"; //Sender’s email address, your sending mailbox address
  10. $deliver=$smtp_acc; //Reply to the specified email address
  11. $headers = "Content-Type: text/plain; charset="gb2312"rnContent-Transfer-Encoding: base64";
  12. $lb="rn"; //linebreak
  13. $hdr = explode($lb,$headers); //Parsed hdr
  14. if($body) {$bdy = preg_replace("/^./",". .",explode($lb,$body));}//Parsed Body
  15. $smtp = array(
  16. //1. EHLO, expect to return 220 or 250
  17. array("EHLO ".$loc_host.$lb,"220,250","HELO error: "),
  18. //2. Send Auth Login , expecting to return 334
  19. array("AUTH LOGIN".$lb,"334","AUTH error:"),
  20. / /3. Send the Base64-encoded username, expecting to return 334
  21. array(base64_encode($smtp_acc).$lb,"334","AUTHENTIFICATION error : "),
  22. //4. Send the Base64-encoded password and expect a return of 235
  23. array(base64_encode($smtp_pass).$lb,"235" ,"AUTHENTIFICATION error : "));
  24. //5. Send Mail From, expecting to return 250
  25. $smtp[] = array ("MAIL FROM: <".$from.">".$lb,"250","MAIL FROM error: ");
  26. //6. Send Rcpt To.Expect to return 250
  27. $smtp[] = array("RCPT TO: <".$to.">".$lb,"250","RCPT TO error: ");
  28. //7. Send DATA, expecting to return 354
  29. $smtp[] = array("DATA".$lb,"354","DATA error: ");
  30. // 8.0. Send From
  31. $smtp[] = array("From: ".$deliver.$lb,"","");
  32. //8.2. Send To
  33. $smtp[] = array("To: ".$to.$lb,"","");
  34. //8.1. Send title
  35. $smtp[] = array("Subject: ".$subject.$lb,"","") ;
  36. //8.3. Send other Header content
  37. foreach($hdr as $h) {$smtp[] = array($ h.$lb,"","");}
  38. //8.4. Send a blank line to end the header sending
  39. $ smtp[] = array($lb,"","");
  40. //8.5. Sending message body
  41. if($ bdy) {foreach($bdy as $b) {$smtp[] = array(base64_encode($b.$lb).$lb,"","");}}
  42. //9. Send "." to indicate the end of the letter and expect to return 250
  43. $smtp[] = array(".".$lb,"250","DATA( end)error: ");
  44. //10. Send Quit, exit, and expect to return 221
  45. $smtp[] = array( "QUIT".$lb,"221","QUIT error: ");
  46. //Open smtp server port
  47. $fp = @fsockopen($smtp_host, 25);
  48. if (!$ fp) echo "<b>Error: b> Cannot conect to ".$smtp_host."<br> ";
  49. while($result = @fgets($fp, 1024)){if(substr($result ,3,1) == " ") { break; }}
  50. $result_str ="";
  51. //Send the command/data in the smtp array
  52. foreach($smtp as $req){
  53. //Send message
  54. @fputs($fp, $req[0 ]);
  55. //If you need to receive information returned by the server, then
  56. if($req[1]){
  57. //Receive information
  58. while($result = @fgets($fp, 1024)) {
  59. if(substr($result,3,1) == " ") { break; }
  60. };
  61. if (!strstr($req[1],substr($result,0,3))){
  62. $result_str.=$req[2].$result."<br>" ;
  63. }
  64. }
  65. }
  66. //Close the connection
  67. @fclose($fp);
  68. return $result_str;
  69. }

I hope the above code example can help everyone fully grasp the use of PHP's email sending function.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446174.htmlTechArticleApplication code example of PHP email function: #echosend_mail($_POST[email],$tosubject,$_POST[ errortext]); echosend_mail('someone@126.com','onlyatestmailfortestphpmailfunction','A letter...
Statement of this Website
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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles