1
I developed a plugin for Wordpress, already tested on hostgator, worked correctly. When I put in Digital Ocean, the function wp_mail();
passes as true
but does not send any email.
1
I developed a plugin for Wordpress, already tested on hostgator, worked correctly. When I put in Digital Ocean, the function wp_mail();
passes as true
but does not send any email.
1
If I’m not mistaken, Digital Ocean instances do not come with a previously installed SMTP server. You will have to login to the instance via SSH and install the server manually, then use it in Wordpress or any other application you want.
That one tutorial on Digital Ocean’s own website should help you.
Thanks Rodrigo, I even made a mask to forward the email to the gmail box, but it hasn’t worked out yet.
Browser other questions tagged wordpress
You are not signed in. Login or sign up in order to post.
Friend, you need to look if your server php mail function is active. Many hosting servers do not leave it enabled due to misuse of some users. If disabled, use some SMTP upload plugin like WPSMTP or Easy SMTP
– CaioVncius
Try this: What’s the easiest way to setup SMTP Settings programmatically?
– brasofilo