Report this

What is the reason for this report?

How to Activate email funtion

Posted on August 21, 2019

My site is hosted on Digital Ocen with Wordpress. Now i want to activate mail function for my site because i am unable to receive contact form email. Please guide me how to activate it.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

This comment has been deleted

This comment has been deleted

Hello,

By default Wordpress uses plain PHP mail which is not very reliable. It is better to use SMTP. I could sugges using a plugin like Easy WP SMTP. This would allow to easily integrate SMTP functionality to your site.

Then you could either setup an SMTP service on your droplet, to set that up you could follow the steps here:

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-postfix-on-ubuntu-16-04

Or you could use an external SMTP provider like Gmail. This would increase the delivery rate of your emails a lot.

If for any reason this is still not working, make sure to allow outgoing SMTP traffic:

sudo ufw allow 25
sudo ufw allow 465
sudo ufw allow 587
sudo ufw reload 

If you are still not receiving your emails even after that, you could test your outgoing connectivity on port 25 with this command here:

telnet smtp.gmail.com 25

If you are getting connection timeout, even after allowing the traffic via your firewall, then you could contact DO support team who will be able to guide you through getting mail functionality enabled on your Droplet and account!

https://www.digitalocean.com/company/contact/#support

Hope that this helps! Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.