5

I hope someone can help, and that I've chosen the relevant Stack Exchange site for my question.

I'm having a strange issue with emails not being received by some people. I have a website that sends out emails, and I've never had a problem with it. I'm BCC'd in on every email that gets sent to I know they are being sent and I'm receiving them myself, however some people have reported that they are not receiving the emails for some reason. These are users that have always received them without issue in the past, and I know they've been sent because I have a copy of the email. They insist that no filtering happens and that they are not going to their Junk folders. Strangely, I can email the users from my email client without issue but if I try and forward the missing mail it doesn't seem to get through to them either. I've checked against blacklists and not had any negatives returned. It is happening for one user both on his office email account and on his personal email account.

My question is this: what else can I do to diagnose this? I am at a complete loss, I'm insisting it's not something at my end as I'm getting the emails through but I'm starting to wonder if that's true as three people have reported the issue today, and they've never had an issue before. This isn't affecting everyone, but three of seven emails so far today have not been received by the users. The website has been running successfully for well over a year now.

Any and all advice would be greatly appreciated!

Thanks

JoeP
  • 144

2 Answers2

3

Ideally, you need to check the logs if possible to see what is going on. This will give you a complete break down of each 'stage' of the email process and will hopefully provide extra information.

It also sounds like you're using a third party to send the email, if this is the case, then there is nothing we can do as it could be a bug in their system, for example.

Since your comments mentions it could be just delayed, read up on grey listing

Greylisting (or graylisting) is a method of defending e-mail users against spam. A mail transfer agent (MTA) using greylisting will "temporarily reject" any email from a sender it does not recognize. If the mail is legitimate the originating server will, after a delay, try again and, if sufficient time has elapsed, the email will be accepted.

And most intersetingly

Greylisting is effective because many mass email tools used by spammers do not queue and reattempt mail delivery as is normal for a regular Mail Transport Agent

Dave
  • 25,513
1

You can do some manual troubleshooting as follows:

You can find out what the server should be for any domain by looking up the "MX records"

For example here: http://mxtoolbox.com/

The MX record is what your email server looks for to find out where they should send your email.

You can then initiate a manual connection to the server listed in the MX record to see if it is accepting email and what error messages you might get. Use a telnet program like Putty: http://www.putty.org/ and telnet to the email server on port 25. Some of the commands you will need are listed here: http://www.yuki-onna.co.uk/email/smtp.html

So now you can connect to their mail server and send an email using your email address as the "From" address and see how the server responds directly. Try it from your computer and also from the server and see how their email server responds to the different IP addresses. Any email error codes that are returned can be looked up in google or here: http://www.serversmtp.com/en/smtp-error

Once you have checked that you can connect to the server it may tell you why your email is being rejected as spam or for some other reason, but the reason may not be easy to decipher. At this stage I would suggest you ask your customer to contact their support number with the error codes (or lack of them) that you received from their server. You can't log a problem yourself because the problem is on the receiving server. The customer will have to log that problem themselves. If they are not able to get the settings changed on their email server you may be able to find out what you would need to change on your server to get your emails delivered.

Some possible problems are your server being listed on a block list or lacking a SPF record and you can fix that yourself and check using various online validation services. For example https://www.mail-tester.com/

Daniel
  • 301