By newbie
Hello, im using wordpress multisite and i set my following email settings from Network > sites >setting
Mailserver Url Mailserver Login Mailserver Pass Mailserver Port
but unfortunately no mails are going. same details are working for another php application hosted on same server in another sub-domain. only difference is on that php application, i could setup authentication on, here no such option…
so i install check mail plugin to find out the cause of the issue, and on check-mail plugin, i can see my current email setting are as following.
Current mail settings
SendMail path (UNIX): /usr/sbin/sendmail -t -i SMTP server (Windows): localhost SMTP port (Windows): 25 Add X header: 1
now i cant understand why & from where this is coming. anyone can guide me to resolve this?
thanks
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!
Accepted Answer
When it comes to e-mail, you’re going to be much better off using a transactional e-mail provider to ensure that e-mail goes through.
For example:
They all have plugins that integrate with WordPress to allow sending via their API or SMTP servers.
…
The reason I’d recommend using a transactional e-mail provider is due to the fact that to successfully send e-mail, you need a valid PTR (Reverse DNS Record) as well as SPF, DKIM, and possibly even a setup for DMARC to keep mail out of the spam/junk folder on the recipients end, if they make it that far.
SendMail and Postfix will attempt to send e-mail when called by PHP’s mail()
function, though even if they do send, there’s no guarantee it won’t bounce or actually make it where intended without those things configured (and that can be a bit of a hassle – both to setup and manage).
Services, like those mentioned above, work around that by providing API and/or SMTP integration on there end, which you connect to via a Plugin. You may still need to add SPF/DKIM entries to your DNS zone file as a part of their setup, but you won’t have to physically set those things up on your server as a part of a working mail server setup/configuration.
…
That said, you can check mail.log
in /var/log
to see what is being said about the mail – whether it’s sending, failed, bounced, ect.
tail -20 /var/log/mail.log
That’s generally the first place to look when it comes to mail issues, unless another log file is used or specified.
Hello all,
What I could suggest here is using an SMTP plugin for your WordPress site.
That way you will be able to specify an SMTP server with authentication which your emails would be going through. You could for example use SendGrid’s SMTP service. This would drastically increase the delivery rate of your emails as well compared to using plain PHP mail.
I’ve been using this plugin for a while now and it works very well: Easy WP SMTP.
Hope that this helps! Regards, Alex
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.