


PHP requires an installed and running mail system in order to make the mail function mail() available. The mail system program used is set in the php.ini file.
Use the following code to send emails, but the delivery always fails.
[PHP] view plaincopyprint?
<?php $to = "xxxxxxxx@qq.com"; $subject = "Test mail"; $message = "Hello! This is a simple email message."; mail($to,$subject,$message); ?>
After investigation, PHP requires an installed and running mail system in order to make the mail function mail() available. The mail system program used is set in the php.ini file. The specific solutions are as follows:
1. Install sendmail
sudo apt-get install sendmail
sudo apt-get install sendmail-cf
sudo apt-get install mailutils
2. Configure sendmail
Open /etc/mail/sendmail.mc and find the following line:
DAEMON_OPTIONS('Family=inet, Name=MTA-v4, Port=smtp, Addr=127.0.0.1')dnl
Change 127.0.0.1 Change to 0.0.0.0
Execute the following command to back up the old configuration file and generate a new configuration file:
cd /etc/mail
mv sendmail.cf sendmail.cf~
m4 sendmail.mc > sendmail.cf
3. Test
echo "This is a test mail." | mail -s "test" xxxxxxxx@qq.com
Note: This email will be treated as For spam reception, in addition, if you use the 163 mailbox, it may be directly filtered and cannot be received.
4. Configure the php.ini file
Open /etc/php5/apache2/php.ini and find the following line:
; sendmail_path =
Change the line to: sendmail_path = /usr/sbin /sendmail -t
What needs special attention here is that the "-t" parameter is essential. If it is missing, the mail() function will fail to execute when the original php file is executed through the browser, but if There will be no problem if you use the php command line directly on the server to execute the original php file.
5. Restart apache
sudo /etc/init.d/apache2 restart
At this time, execute the original php code again,mail Sending was successful.
The above is the detailed content of Analysis and solutions to the reasons why PHP cannot use the mail function. For more information, please follow other related articles on the PHP Chinese website!

网页打不开是什么原因及解决方法在现代社会中,互联网已经成为人们生活、工作中必不可少的一部分。然而,有时我们会遇到一些问题,比如打不开某些网页,这不禁让人感到烦恼和困惑。那么,网页打不开的原因是什么?又该如何解决呢?首先,我们需要了解网页无法打开的原因。最常见的原因之一是网络连接问题。网络连接差、信号弱、网络故障都可能导致网页无法打开。此外,网页服务器可能出现

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

超链接作为网页中常见的元素之一,常被用于指向其他网页、文件或特定位置。然而,有时我们会遇到超链接无法打开的情况,这可能由多种原因引起。首先,超链接无法打开可能是由于链接地址错误导致的。在创建超链接时,我们需要确保链接的地址正确无误。如果地址中包含特殊字符或空格,可能会导致链接无法打开。此外,如果链接地址发生变化或目标文件已经移动或删除,也会导致链接无法打开。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
