How change smtp in php ini?

Email is one of the most important factors in having effective business communication. One can also use emails to host marketing campaigns to reach the appropriate audience. Apart from these uses, there are several other benefits of using email as the communication channel including keeping a record of all the messages.

In this tutorial, we will discuss the parameters involved in sending an email and the possible ways to send an email using PHP.

Basics of Email

This section explains the basics of sending an email by explaining the parameters involved in an email. We can include the below-listed parameters while sending an email.

From - The mandatory field to specify the sender email address. It must be a valid email address to send an email.

Reply-To - It's an optional parameter to accept email replies. If not specified, the From email address will be used to send replies.

To - It's the most important and mandatory parameter to send an email. We can include either single or multiple receiver email addresses to send an email either to single or multiple receivers.

// To - Format - RFC 2822 - Single Receipient

Receipient Name <Receipient Email>
// OR
Receipient Email

// To - Format - RFC 2822 - Multiple Receipient

Receipient 1 Name <Receipient 1 Email>, Receipient 2 Name <Receipient 2 Email>
, Receipient 3 Name <Receipient 3 Email>
// OR
Receipient 1 Email, Receipient 2 Email
// OR
Receipient 1 Name <Receipient 1 Email>, Receipient 2 Email

Cc - Carbon Copy - Similar to To, we can specify either single or multiple recipients to receive a copy of the email in order to keep them notified about the communication.

Bcc - Blank Carbon Copy - We can also involve recipients who will receive a copy of the email without mentioning them to the recipients involved in both To and CC list. The recipients involved in both To and CC list will never know that the same email is also sent to the recipients mentioned in the BCC parameter.

Subject - Though it's not a mandatory field, one must include the subject in order to hint the recipients about the content involved in the email. A short and descriptive subject can tell the recipient about the communication context.

The subject can be of multiple lines separated with a CRLF (\r\n). Each line must not have more than 70 characters.

Message - The actual message to be sent to the recipients mentioned in To, CC, and BCC parameters. Though we can send an email without a message, it's not a preferred way to send an email.

Send Email using mail() function

We can use the PHP function mail() to send an email as shown below. It expects that the appropriate Mail Server is installed on the system listening on port 25 to send the email or PHP is configured to use an SMTP server.

Also, make sure that the fields are validated and sanitized before passing them to the mail() function to avoid errors.

// Mail Function
$from = "<sender address>";
$to = "<recipient addresses>";
$subject = "<email subject>";
$message = "<email message>";
$headers = "<headers including From, Reply-To, CC, BCC>";
$parameters = null;

mail( $to, $subject, $message, $headers, $parameters );

// Example
$from = "";
$replyTo = "";
$to = "";
$cc = "";
$bcc = "";
$subject = "Hello Guest";
$message = "Thanks for joining us.";
$headers = [ "From: $from", "Reply-To: $replyTo", "Cc: $cc", "Bcc: $bcc" ];

mail( $to, $subject, $message, implode( '\r\n', $headers ) );
// OR - PHP 7.2.0 or greater
mail( $to, $subject, $message, $headers );

This is the easiest way to send an email using PHP.

The mail function will throw an error, in case it does not find a mail server or PHP is not configured to use an SMTP server.

In absence of email server or SMTP configuration, the error should look like the one as shown below.

PHP Warning:  mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in E:\PracticePHP\email.php on line 11
Warning: mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in E:\PracticePHP\email.php on line 11
PHP Stack trace:
PHP 1. {main}() E:\PracticePHP\email.php:0
PHP 2. mail() E:\PracticePHP\email.php:11

Call Stack:
0.0078 398696 1. {main}() E:\PracticePHP\email.php:0
0.0090 399464 2. mail() E:\PracticePHP\email.php:11

Done.

Configure PHP to use SMTP Server

In case the email server is not installed on the system or installed on a different system, you must configure PHP to use an SMTP server. The php.ini file must be updated to configure an SMTP server. You can add/modify the below-listed settings to configure the SMTP server.

; must have
SMTP = <server host>
smtp_port = 25

; optional - required in case server requires authentication
auth_username = <username>
auth_password = <password>

SMTP Host - Update the SMTP setting to specify the server host. It must be a valid server having a mail server installed on it.

SMTP Port - The default port to send mail via SMTP is 25. The ports 587(MSA) or 465(SMTP) can be used to send emails securely.

Auth Username - The username required to identify the valid user.

Auth Password - The password required to authenticate the user.

After applying the above-mentioned configurations, restart the webserver. If the provided details are correct, we can send emails using the mail() function of PHP with appropriate mail server configuration. In this way, we can send emails without installing our email server.

In case you are using the secure ports 587 or 465, you might get an error in case the OpenSSL module is not enabled for PHP. It can be done on Windows by following How To Configure PHP OpenSSL Module On Windows.

You also need to install and configure Sendmail on windows systems. You can follow How To Use Sendmail On Windows To Send Email Using PHP to configure Sendmail on Windows.

Standard Services Configuration

You can also use the standard email services including Gmail, Yahoo, and Outlook to send an email. Below listed are the configurations to be applied to your php.ini file to send emails using your Gmail, Yahoo, or Outlook as mentioned below.

; Gmail configurations
SMTP = smtp.gmail.com
; You can also specify port 587
smtp_port = 465
auth_username = <Gmail username>
auth_password = <Gmail password>

; Yahoo configurations
SMTP = smtp.mail.yahoo.com
smtp_port = 465
auth_username = <Yahoo username>
auth_password = <Yahoo password>

; Outlook configurations
SMTP = smtp.live.com
smtp_port = 465
auth_username = <Outlook username>
auth_password = <Outlook password>

You must take special care while sending emails using free accounts since there are limitations in sending emails using these services. These services might block your account in case you exceed the specified limit, hence avoid using personal email accounts.

Gmail limits to a maximum of 100 recipients at a time with a limit of 500 messages per day. Similarly, Yahoo also applies a limit of 100 recipients and 500 messages per day.

You might also need to keep the 2-step verification off if you’re using it.

Also, you can follow How To Use Sendmail On Windows To Send Email Using PHP to configure Sendmail on Windows.

Send Email using PHPMailer and SwiftMailer

We can also send emails using the standard libraries available in PHP. The most popular among these libraries are PHPMailer and SwiftMailer.

Summary

In this tutorial, we have discussed the parameters to be considered while sending an email. I have also mentioned the different ways to send an email with and without the SMTP server. You can follow the tutorials Send Email Using PHPMailer and Send Email Using Swift Mailer to send emails using these libraries.

You can also post your comments to join the discussion. The other relevant tutorials for PHP includes Send Email Using PHPMailer, Send Email Using Swift Mailer, How To Use Sendmail On Windows To Send Email Using PHP, How To Configure PHP OpenSSL Module On Windows, How To Install XAMPP On Windows, How To Install WampServer on Windows, How To Install PHP 7 On Ubuntu 18.04 LTS, and How To Install PHP 7 On Windows.

How configure SMTP in PHP?

Writing the PHP Code to Send Email using Gmail SMTP.
Step 1: Download PHPMailer library from this github link. ... .
Step 2: Writing the PHP Code to make an SMTP connection. ... .
Step 3: Include packages and files for PHPMailer and SMTP protocol: ... .
Step 4: Initialize PHP Mailer and set SMTP as mailing protocol:.

How do I change my SMTP port from 25 to 587?

Windows Mail.
Start Windows Mail, click the Tools menu at the top of the window and then click Accounts..
Select your account under Mail, and then click on the Properties button..
Go to the Advanced tab, under Outgoing server (SMTP), change port 25 to 587..
Click the OK button to save the changes..

How do I mention SMTP host and SMTP port in PHP INI file?

Show activity on this post..
Install the latest hMailServer. ... .
Connect to "localhost"..
"Add domain...".
Set "127.0. ... .
"Settings" > "Protocols" > "SMTP" > "Delivery of e-mail".
Set "localhost" as the "Local host name", provide your data in the "SMTP Relayer" section, click "Save"..

How do I change my SMTP username and password?

How to configure SMTP authentication.
Right-click on the context menu of your e-mail account and click on “Settings”.
Navigate to “Outgoing server (SMTP)” select your mail server and click “Edit”.
Activate the option “Use username and password” and enter your e-mail address..
Confirm the settings with “OK”.