How to enable php mail function in linux

Enabling the PHP mail function in Linux involves configuring the mail server and setting up the PHP configuration file. Here's a step-by-step guide to help you achieve this:

Step 1: Install a mail server

You'll need to install a mail server on your Linux system. The most popular ones are:

For example, on Ubuntu-based systems, you can install Postfix using the following command:

sudo apt-get install postfix

On Red Hat-based systems, you can install Sendmail using the following command:

sudo yum install sendmail

Step 2: Configure the mail server

Once the mail server is installed, you'll need to configure it. The configuration process varies depending on the mail server you're using. Here are some general steps:

Step 3: Configure PHP

Edit the PHP configuration file (/etc/php.ini or /etc/php5/apache2/php.ini depending on your PHP version) and add the following lines:

[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25

; For Win32 only.
sendmail_path = "/usr/sbin/sendmail -t -i"

Replace localhost with the hostname of your mail server.

Step 4: Restart the mail server and PHP

Restart the mail server and PHP services to apply the changes:

sudo service postfix restart
sudo service sendmail restart
sudo service apache2 restart

Step 5: Test the PHP mail function

Create a PHP file with the following code:

<?php
mail('[email protected]', 'Subject', 'Hello, world!');
?>

Replace [email protected] with the email address you want to send the mail to.

Save the file and access it through your web browser. If everything is set up correctly, you should receive an email with the subject "Subject" and the body "Hello, world!".

That's it! You should now be able to use the PHP mail function to send emails from your Linux system.