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?
Solved! Go to Solution.
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
@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.
Hello @Davroid,
Follow these steps to set up SMTP access for Magento manually:
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
Let us know if you have any trouble.
--
If my answer is useful, please Accept as Solution & give Kudos