Home Backend Development PHP Tutorial PHP email sending case

PHP email sending case

Jun 06, 2018 pm 05:00 PM
php email sending

This article mainly introduces PHP email sending cases. Interested friends can refer to it. I hope it will be helpful to everyone.

The role of the mail() function: Connect to the mail server, use the smtp protocol, interact with the server and send mail.

Note:

1. The mail function does not support the esmtp protocol, that is, it can only cast directly and cannot log in.

2. From the above article, we can only send directly to the final receiving server address. And this address is specified in PHP.ini, so we want to use the mail() function to aseoev@ If 163.com sends an email, we need to ---

1) Query the address of the 163 mail server

2) Write the address to php. ini to

php example code is as follows:

SMTP = 163mx02.mxmail.netease.com 
sendmail_from = wusong@192.168.1.100 
var_dump(mail('12345678@qq.com','from php mail function','very intresting'));
Copy after login

But to use the mail function that comes with php to send emails, we need to install one in linux Only sendmail component can be used, otherwise it cannot be used.

If you don’t have this sendmail component, we can use the phpmailer function to operate it. The example code is as follows:

<?php 
 
 require(&#39;./PHPMailer/class.phpmailer.php&#39;); 
 
 $phpmailer = new PHPMailer(); 
 
 $phpmailer->IsSMTP(); 
 
 $phpmailer->Host = &#39;smtp.163.com&#39;; 
 $phpmailer->SMTPAuth = true; 
 $phpmailer->Username = &#39;&#39;; 
 $phpmailer->Password = &#39;&#39;; 
 
 $phpmailer->CharSet = &#39;utf-8&#39;; 
 $phpmailer->From = &#39;&#39;; 
 $phpmailer->FromName = &#39;&#39;; 
 $phpmailer->Subject = &#39;&#39;; 
 $phpmailer->Body = &#39;&#39;; 
 
 $phpmailer->AddAddress(&#39;never_kiss@163.com&#39;,&#39;Aseoe&#39;); 
 
 echo $phpmailer->send()?&#39;发送成功&#39;:&#39;发送失败&#39;; 
 
?>
Copy after login

There is no content above. Let’s take a look at the code with content. As follows:

<?php 
 
/** 
用PHPMailer类来发信 


步骤: 
0: 引入 
1: 实例化 
2: 配置属性 
3: 调用发送 
**/ 
require(&#39;./PHPMailer/class.phpmailer.php&#39;); 
$phpmailer = new PHPMailer(); 
 
/* 
设置phpmailer发信用的方式 
可用用win下mail()函数来发 
可以用linux下sendmail,qmail组件来发 
可以利用smtp协议登陆到某个账户上,来发 
*/ 
$phpmailer->IsSMTP(); // 用smtp协议来发 
$phpmailer->Host = &#39;smtp.163.com&#39;; 
$phpmailer->SMTPAuth = true; 
$phpmailer->Username = &#39;&#39;; //发送邮箱的账号(用163邮箱发信的账号) 
$phpmailer->Password = &#39;&#39;; //发送邮箱的密码 
// 可以发信了 
$phpmailer->CharSet=&#39;utf-8&#39;; 
$phpmailer->From = &#39;never_4ill@163.com&#39;; 
$phpmailer->FromName = &#39;neverkill&#39;; 
$phpmailer->Subject = &#39;Superstart Aseoe&#39;; 
$phpmailer->Body = &#39;脚本之家(http://www.jb51.net 专注前端开发与编程设计.&#39;; 
//设置收信人 
$phpmailer->AddAddress(&#39;never_4ill@163.com&#39;,&#39;neverkill&#39;); 
// 添加一个抄送 
$phpmailer->AddCC(&#39;1234567&#39;,&#39;Aseoe&#39;); 
// 发信 
echo $phpmailer->send()?&#39;ok&#39;:&#39;fail&#39;;
Copy after login

Add a method using the above example:

Directly decompress the phpmailer compressed package and put it in the root directory to run, and put the file directly into the local wamp In the root directory, run 02.php to send the email (assuming the php file is executable) - (if not, create a folder in the root directory and repeat the operation) http://localhost/02.php.

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

php uses ffmpeg to implement the method of adding text subtitles to videos

php The definition of parse_str() function and Detailed explanation of usage examples

php method of randomly selecting values ​​from arrays and simple examples

The above is the detailed content of PHP email sending case. For more information, please follow other related articles on the PHP Chinese website!

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

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 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
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)

How to send and receive emails using PHP How to send and receive emails using PHP Jun 18, 2023 am 08:38 AM

PHP is a widely used server-side scripting language that is often used when developing web applications. It can easily send and receive emails, allowing developers to quickly build their own email systems. In this article, we will explore how to send and receive emails using PHP. 1. Sending emails PHP provides many functions for sending emails. The most commonly used one is the PHPMailer class that uses an SMTP server to send emails. This class is an open source library written in PHP with extensive

PHP email sending methods and summary of frequently asked questions PHP email sending methods and summary of frequently asked questions Jun 08, 2023 pm 10:57 PM

In the Internet era, email has become an indispensable part of people's lives and work. PHP is a language widely used in the field of web development, and email sending is also essential in web applications. This article will introduce in detail the relevant content and common problems of PHP email sending. 1. PHP email sending method PHPmailer library PHPmailer is a powerful PHP email sending library that can easily send emails in HTML format and plain text format. Using PHPmai

PHP Email Sending Guide: How to use the mail function to send emails PHP Email Sending Guide: How to use the mail function to send emails Jul 30, 2023 pm 10:13 PM

PHP Email Sending Guide: How to Use the Mail Function to Send Emails In web development, you often encounter situations where you need to send emails, such as automatically sending a welcome email after successful registration, or resetting your password after forgetting your password, etc. In PHP, we can use the mail function to implement the mail sending function. This article will teach you how to use the mail function to send emails. 1. Preparation Before using the mail function to send emails, we need to ensure that the server has configured the SMTP service and installed s

How to send email via mailbox using PHP? How to send email via mailbox using PHP? Sep 19, 2023 am 09:46 AM

How to send email via mailbox using PHP? With the development of the Internet, email has become an indispensable part of people's daily life and work. The function of automatically sending emails through programming language can greatly improve work efficiency and convenience. In PHP we can send emails through mailbox using SMTP protocol. Next, I will introduce you to the specific method of sending emails through mailboxes in PHP, and give code examples. Step 1: Install necessary libraries in PHP

How to handle email sending and receiving in PHP forms How to handle email sending and receiving in PHP forms Aug 11, 2023 am 08:30 AM

How to handle email sending and receiving in PHP forms is one of the important ways of modern communication. By adding email sending and receiving functions to the form of the website, the website can be made more practical and interactive. This article will introduce how to use PHP to handle sending and receiving emails in forms. Email Sending Before processing email sending, first ensure that the server has been configured with the email sending function. Generally speaking, sending emails involves the settings of the SMTP server. You can obtain the SMTP server address from the network service provider or network administrator.

Detailed analysis of PHP mail sending functions: Mail sending operation guide for mail, smtp, PHPMailer and other functions Detailed analysis of PHP mail sending functions: Mail sending operation guide for mail, smtp, PHPMailer and other functions Nov 18, 2023 pm 05:20 PM

Detailed analysis of PHP mail sending functions: Mail sending operation guide for mail, smtp, PHPMailer and other functions, specific code examples are required 1. Introduction In modern society, email has become one of the important tools for people to communicate and exchange information. In web development, we often encounter the need to send emails. Whether it is user registration verification, password reset, or system notifications and marketing activities, we all need to use the email sending function. As a powerful scripting language, PHP provides a variety of functions for sending emails and

How to use PHP to implement mail arrival and reading functions? How to use PHP to implement mail arrival and reading functions? Sep 19, 2023 pm 01:29 PM

How to use PHP to implement mail arrival and reading functions? With the rapid development of the Internet, email has become an indispensable part of people's daily life and work. Using PHP language to implement email arrival and reading functions can help us manage and process emails more efficiently. Below I will introduce in detail how to use PHP to realize the mail arrival and reading functions, including configuring SMTP, sending mail and reading mail. Configuring SMTP To send and read emails, you first need to configure SMTP parameters. SMTP (Simp

Use PHP to send emails Use PHP to send emails Jun 11, 2023 am 08:46 AM

With the popularity of the Internet and email, more and more people are beginning to use email as their main communication tool. PHP is a popular server-side programming language that can also be used to send emails. In this article, we will explain how to use PHP to send emails. Configuring the SMTP server First, we need to configure the SMTP server. SMTP (SimpleMailTransferProtocol) is the standard protocol for email transmission. Most email service providers will provide

See all articles