Use Google Apps & Gmail To Send SMTP Mails In Joomla

I am sure every body using Joomla with Google Apps or Gmail will be facing problem to authenticate SMTP in Global configuration. To use Google Apps or Gmail as SMTP mail sender you should first enable SSL on your server. Next, you need to hack the phpmailer page to connect with Google SMTP mail server to send mails.This phpmailer page differs in which version of joomla you are using. Below is the location of the phpmailer page which you need to hack. Before doing anything be smart to backup the file.

Joomla 1.0.x: includes/class.phpmailer.php

Joomla 1.5: includes/phpmailer.php

Find the code around the line 537:

if(strstr($hosts[$index], ":"))
        list($host, $port) = explode(":", $hosts[$index]);
else
{
        $host = $hosts[$index];
        $port = $this->Port;
}

Replace it with:

if (preg_match('#(([a-z]+://)?[^:]+):(\d+)#i', $hosts[$index], $match))
{
        $host = $match[1];
        $port = $match[3];
}
else
{
        $host = $hosts[$index];
        $port = $this->Port;
}

Now login to your joomla backend and go to Mailer in Global configuration

Enter/choose the options in below format

Mailer: SMTP Server
Mail From: <your_user_id>@gmail.com (Google apps user: your_user_id@yourdomain.com)
SMTP Auth: Yes
SMTP User: <your_user_id>@gmail.com (Google apps user: your_user_id@yourdomain.com)
SMTP Password: <your_password>
SMTP Host: ssl://smtp.gmail.com:465

Be sure that you have enable POP in your Gmail or Google Apps before you save this and test. All the best.



6 Responses to “Use Google Apps & Gmail To Send SMTP Mails In Joomla”

  1. Javier H. Eraso Says:

    Hello.
    Thanks for the info, but, What do you mean with “enable SSL”. Do we need a SSL certificate? Please clarify this point.

  2. Louis Vuitton Wallet Says:

    Luxury wallets store supply all kinds of Louis Vuitton Wallet in a low price with high quality.Our online store sell a lot of famous brands wallets such as Chanel Wallets and gucci wallets.

  3. ???? Says:

    There are always ups and downs whenever you have a new release. Just hang in there !!! Thanks for the great read

  4. tory burch outlet Says:

    Wear the Tory Burch Flats are so comfortable and beautiful.When you wear the tory burch shoes and take the Tory Burch Sandals to go outside,you are the most fashion women.

  5. gucci outlet online Says:

    Gucci Outlet Gucci Outlet
    Gucci store Gucci store

  6. home Security Says:

    I enjoyed your blog. It’s easy to read, the content is good, and you’re an educated writer unlike most of the blogs I come across when searching on this topic. I will check back in the future and see if you have more articles. Thanks for posting this, I appreciate the information and the effort you put into your site.

Leave a Reply