cancel
Showing results for 
Search instead for 
Did you mean: 

Setting magento 1.9 to send emails

SOLVED

Setting magento 1.9 to send emails

How can i set magento 1.9 to send emails using the settings from my email hosting provider?

 

Where are the settings in magento in order to fill in the email account details?

 

Does this require a separate plugin and mail sending service?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Setting magento 1.9 to send emails

Thanks for that. I had assumed that in order for magento to be able to send emails from an email address it would have needed the email user name and a password, but it works so thats the main thing Smiley Happy

View solution in original post

3 REPLIES 3

Re: Setting magento 1.9 to send emails

@Davroid please check whether email communication is enabled or disabled. (path - System >> Configuration >> Advanced menu)

Also, Magento 1.9 do not send email directly for checkout, you need to set a cronjob. that's it, hope this helps. 

-
Magento Programmer | Was my answer helpful? You can accept it as a solution.

Re: Setting magento 1.9 to send emails

Hello @Davroid,

 

Follow these steps to set up SMTP access for Magento manually:

  1. From the Magento Admin Panel, click System > Configuration. https://www.screencast.com/t/9Zlu2va1ayK
    pasted image 0.png
  2. Scroll down to the ADVANCED sub-menu, then click System. https://www.screencast.com/t/1digV07e
    Screenshot - 10_6_2016 , 3_58_40 PM.png
  3. From the System section, click Mail Sending Settings. https://www.screencast.com/t/GzWSCogu
    Configuration___System___Magento_Admin.png
  4. Enter the correct information in the Host and Port (25) fields:
    - In the Host field, enter your outgoing SMTP mail server hostname. If you do not know the hostname, you can contact your hosting provider. https://www.screencast.com/t/lGgPkOTEwM
    Screenshot - 10_6_2016 , 4_07_16 PM.png
    - In the Port (25) field, enter 587, then click Save Config. https://www.screencast.com/t/1CgOn5juosD
    Configuration___System___Magento_Admin (1).png
  5. If you are able to open crontab in your shared server then write that command crontab -e to open editor. [it edit it via vim] .

    To set your cron every 5 minutes you can use that command

    */5 * * * * /bin/bash /path/to/magento/cron.sh

    After that pres :wq to save and quit your editor

  6. Done.

Let us know if you have any trouble.

 

--
If my answer is useful, please Accept as Solution & give Kudos

Re: Setting magento 1.9 to send emails

Thanks for that. I had assumed that in order for magento to be able to send emails from an email address it would have needed the email user name and a password, but it works so thats the main thing Smiley Happy