PHP Classes

PHP Mail Alternative Setting PHP SMTP Server to Use Gmail, Hotmail or Yahoo - MIME E-mail message sending package blog

Recommend this page to a friend!
  All package blogs All package blogs   MIME E-mail message sending MIME E-mail message sending   Blog MIME E-mail message sending package blog   RSS 1.0 feed RSS 2.0 feed   Blog PHP Mail Alternative ...  
  Post a comment Post a comment   See comments See comments (21)   Trackbacks (0)  

Author:

Viewers: 2,270

Last month viewers: 758

Package: MIME E-mail message sending

Sometimes it is not possible or it is inconvenient to send e-mail with scripts using the regular PHP mail() function.

An alternative solution consists in using your ISP or a third party SMTP server to relay your messages.

This article explains how to send e-mail with PHP relaying your messages to SMTP servers of Gmail, Hotmail or Yahoo.




Loaded Article

Contents

Trouble Sending Messages using PHP mail() Function

Sending Messages Relaying on an External SMTP Server

Sending messages via Gmail, Hotmail or Yahoo SMTP servers

Quick replacement for the mail() function

Download the PHP Mail Alternative Script to use Gmail, Hotmail and Yahoo


Trouble Sending Messages using PHP mail() Function

In most hosting environments, the PHP mail() function is sufficient to send e-mail messages without problems.

However, there are situations on which using the mail function is inconvenient and may prevent that your messages reach the destination.

That is the case for instance when the hosting company limited the number of messages that your site can send, or the IP address of the server does not have a reverse DNS record (PTR), or for some reason the IP address is black listed.

Therefore, you may need to find an alternative way for sending your e-mail messages from PHP.

Sending Messages Relaying on a Remote SMTP Server

An alternative solution is to send the messages relaying to a remote SMTP server, for instance of your Internet service provider or any other type of e-mail service provider.

As explained in another article, sending e-mail messages relaying them to an SMTP server is a slow method, especially if you need to send newsletters or other types of messages to many recipients.

However, if you do not have a better alternative, this is a perfectly valid method for sending your e-mail messages.

Sending Messages via Gmail, Hotmail or Yahoo SMTP Servers

Several popular e-mail providers, like Gmail, Hotmail and Yahoo, now allow sending messages from remote e-mail clients via their SMTP servers.

PHP can act as an e-mail client and benefit of that possibility by using capable a SMTP client class.

The MIME message comes with a sub-class specialized in sending messages via SMTP. It requires using a separate SMTP class for establishing the connection to the SMTP server and sending the messages.

To use these classes to send messages to e-mail providers that support SMTP relay, certain measures need to be taken.

First you need to have an account in those services and make sure that SMTP relay support is enabled for that account.

All of those providers require authentication, i.e. the SMTP client needs to send the user name and password of the e-mail account.

There are several authentication mechanisms that can be used to identify the user account. The SMTP class needs to use the SASL library (Simple Authentication Support Library) to use an authentication mechanism supported by the server.

Each e-mail provider requires specific setting values to configure aspects of the SMTP protocol. These configuration values are set by the means of different variables of SMTP sub-class of the MIME message class. Here follows the list of the most common configuration variables:

smtp_user

Account of the user to authenticate. Usually it is the e-mail address of the account. For services like Yahoo, you have to set the From: message header to the e-mail address of the account. Gmail sets the From header to the account address if you set it to a different address.

smtp_password

Password of the user account

smtp_host

Address of the SMTP server host to relay the messages

smtp_port

TCP port that should be used to connect to the SMTP server. Some e-mail providers support more than one port to work around blocks that certain ISP impose.

timeout

Time that the class should wait for a response from the server. If set to 0, it will wait forever. If your ISP is blocking the port of the remote SMTP server you want to connect, the class will fail when it reaches the timeout period. So, do not set it to 0. If it reaches the timeout because the port is blocked, you may need to try a different port or a different SMTP server.

smtp_ssl

Option to determine whether a secure connection should be established using SSL protocol. This feature requires at least PHP 4.3 with the OpenSSL extension enabled.

smtp_start_tls

Option to determine whether a secure connection should be set after the connection is already established using TLS protocol. This feature requires at least PHP 5.1 with the OpenSSL extension enabled.

Here follows the configuration values for each of the e-mail providers:

PHP Send Email SMTP Gmail Options

smtp_host: smtp.gmail.com
smtp_port: 465 or 587
smtp_ssl: 1

PHP Mail Hotmail Options

smtp_host: smtp.live.com
smtp_port: 25 or 587
smtp_start_tls: 1

Yahoo SMTP Relay Options with Mail Plus (currently a paid service)

smtp_host: smtp.mail.yahoo.com
smtp_port: 25

Quick Replacement for the mail() Function

If you have a PHP application written using the mail function but you need to change it to relay messages to an SMTP service, the MIME message class comes with a replacement function in the smtp_mail.php script named smtp_mail() .

All you need to do is to include the smtp_mail.php script and replace all calls to the mail function by calls to smtp_mail(). The parameters are the same, so you do not need to change them.

You may need change that script to set the required configuration values to use a given SMTP service provider.

Download the PHP Mail Alternative Script to use Gmail, Hotmail and Yahoo

You can download here the complete ZIP archive with scripts to use the Gmail, Hotmail, Yahoo or any other SMTP server, or use the PHP composer tool to install the package with instructions on the download page.

These tips should be sufficient to help you solve the problem of delivering messages using remote SMTP servers. If you still have difficulties, feel free to post a comment to this article. If you liked this article, share with your PHP developer friends.




You need to be a registered user or login to post a comment

1,611,040 PHP developers registered to the PHP Classes site.
Be One of Us!

Login Immediately with your account on:



Comments:

10. Outlook Not Implemented - florida Wilson (2018-11-15 05:56)
Outlook Not Implemented... - 0 replies
Read the whole comment and replies

9. WordPress error message - asus david (2018-07-09 05:38)
getting a word press problem... - 0 replies
Read the whole comment and replies

6. prueba de corrreo - Miguel Cespedes (2014-05-13 16:57)
prueba... - 0 replies
Read the whole comment and replies

5. How to sent attachment - Ashique Majeed (2013-10-13 07:36)
attachment... - 1 reply
Read the whole comment and replies

4. smtp.live.com refuses connection ???? - M F (2013-06-03 12:59)
smtp.live.com refuses connection ????... - 8 replies
Read the whole comment and replies

3. quanghits - thienquanghit (2012-05-05 07:49)
bichdao... - 0 replies
Read the whole comment and replies

2. SMTP - svikram (2011-08-05 18:58)
Smtp problem... - 1 reply
Read the whole comment and replies

1. Error: This computer address - Alessio Dev (2009-04-29 17:29)
This computer address: $email_message->localhost ???... - 1 reply
Read the whole comment and replies



  Post a comment Post a comment   See comments See comments (21)   Trackbacks (0)  
  All package blogs All package blogs   MIME E-mail message sending MIME E-mail message sending   Blog MIME E-mail message sending package blog   RSS 1.0 feed RSS 2.0 feed   Blog PHP Mail Alternative ...