I received an email but the "to" address is not mine

11

As per title, my email address is abc@email.com and received an email from john@company.com.

In my Web Client I see:

From: john@company.com 
To: david@domain.com

I received this on my abc@email.com account so how did I get this email in my inbox?

I have no affiliation whatsoever with david@domain.com. Actually I have received a few emails from john@company.com where the TO address differs.

What's going on?

user35072

Posted 2010-04-24T05:21:21.433

Reputation: 387

Answers

12

The most likely answer is that you have been Blind Carbon Copied(Bcc) on the email. Usually this happens when the sender is actually addressing the party in the To: address, but would like you to see the information without the To: party knowing that you were included on the email.

Mass or group mailings also typically use Bcc to deliver mail to many users without disclosing the email addresses of everyone on the list to everyone.

heavyd

Posted 2010-04-24T05:21:21.433

Reputation: 54 755

1Many spam mails will have From: and To: addresses you have never heard of. Also the To: address may sound similar to your email ID. I don't know the specifics of how such mails work, but make sure you don't click on any links provided in such mails. They are sure to screw with your PC. – Ganesh R. – 2010-04-24T06:16:26.717

To expand on this further BCC essentially just sends you an email via the RCPT TO envelope header and doesn't add your email address to the To: section of the message headers. See the example SMTP commands:

openssl s_client -starttls smtp -crlf -connect outlook-com.olc.protection.outlook.com:25 ehlo examplemta.company.com mail from: john@company.com rcpt to: abc@email.com data to: david@domain.com from: john@company.com subject: Hello World! Hello world!

– Douglas Plumley – 2018-04-05T18:55:12.830

4

As heavyd mentioned, you could be receiving the email as a Blind Carbon Copy (BCC). If someone is sending email to many email addresses at once, such as for a mailing list or Microsoft Outlook personal distribution list, a common technique is to put one address in the "to" line, sometimes the sender's own email address, and put all the other email addresses as BCC addresses, so that everyone on the list doesn't see the email addresses of everyone else on the list. This is done not only for privacy, but also to protect people on such lists from spam, since if one of the recipients has a system infected by malware that scans systems for email addresses to use for spam distribution, then everyone in the list may start receiving spam because their email address was in a message received on the infected system.

Also, spammers often use spoofed "from" addresses to hide the source of spam. You can't rely on a "from" email address as indicating the true originator of email, because it is trivial to put any address you choose in the "from" address of a message even with commonly used email clients and spammers often have software specifically designed to insert spoofed "from" addresses, e.g., ones gleaned from infected systems, since if they find an email address on an infected system, they can then have the malware they've inserted into the system send email to everyone else on the list with one of the addresses they found as the "from" address, since other recipients will likely recognize the "from" address, assume the message is actually from someone they know, and thus open an attachment to the message that infects their system as well. And, if their antivirus software detects the attachment as infected and they reply to the "from" address to warn the sender, they won't be warning the actual sender, whose system may continue to transmit spam, because the owner is unaware it is infected. So you can't assume the message you received actually came from john@company.com.

It also may help to understand how an email client or email server communicates using the Simple Mail Transfer Protocol (SMTP) with an email server to which a message is being sent to understand how the email "to" address you see can differ from the one that was used by the receiving server. E.g., a sending email server will announce itself to the receiving email server with a "helo" or "ehlo" command. The receiving server acknowledges that message and then the sending server issues a "mail from" command followed by an email address, then a "rcpt to" command followed by an email address, which specifies the email address the receiving server will use to route the message. Then the sending server issues a "data" command, which it follows by sending not only the message body, but the "from", "to", "subject" etc. that you will see when you view a message in your email client. The "from" and "to" that follow the "data" command can be anything; they don't have to match the ones the server sees in the "mail from" and "rcept to" commands. The addresses that follow the data command don't affect how the message is routed to an inbox, just what you see when you view the message with an email client. You can see an example of an exchange with a receiving SMTP server at SMTP Example Session.

So what you see in your email client as the "to" address is not necessarily the "rcpt to" address your incoming email server saw and which it used to route the email to you, which could be due to the fact that you were a BCC address or due to the way some sending software created by a spammer was written to send spam to a multitude of addresses by simply using the same "to" line in the body of the message.

moonpoint

Posted 2010-04-24T05:21:21.433

Reputation: 4 432

0

If you are getting messages sent to a dotted version of my address and your address is @gmail, you'll still get that email. For example, if your email is johnsmith@gmail.com, you own all dotted versions of your address:

  • john.smith@gmail.com
  • jo.hn.sm.ith@gmail.com
  • j.o.h.n.s.m.i.t.h@gmail.com

If you get lots of messages addressed to someone else, check if someone is accidentally forwarding their mail to you. Check the email's Original Message, if you see "X-Forwarded-For" on the page, someone is forwarding their mail messages to your account. Try contacting this person to let them know about the mistake.

source: https://support.google.com/mail/answer/7436150

source: https://support.google.com/mail/answer/10313

Waqleh

Posted 2010-04-24T05:21:21.433

Reputation: 101