if i send email from my smtp server, For Example in code if i set From to anyemai@anydomain.com and sent to an email address, than the recipient think that mail comes from anydomain. so how to confirm email source?

link|improve this question

70% accept rate
What problem are you trying to solve? Generally, you don't really need to confirm the source. If they can read emails to that address, they own it. So that's all the confirmation you need to do (confirm they can read it). – Noon Silk Mar 12 '10 at 10:09
some email i recieve through development and some i recieve from production although the development From is same as production. It is difficult which email came from which source. – developer Mar 12 '10 at 16:20
So by "source" you mean "which deployment sent the email"? In that case the content or headers of the email should have some characteristic that differs between deployment and production. Are the SMTP servers different? Can you add your own content (e.g. X-Is-Development: True) or even just add some text in the body? – p00ya Mar 14 '10 at 13:35
smtp server are different. can you give any example how to set headers in c# – developer Mar 15 '10 at 11:39
feedback

2 Answers

up vote 3 down vote accepted
+100

There are several approaches to dealing with email forgery:

  • Use PGP or SSL signed certificates
  • Use SPF
  • check the Received headers (although this isn't reliable)
  • reply back to the sender and ask if they actually sent it. If you know the sender, maybe ask them in person or over the phone.

The main thing to realise is that the From: address isn't any form of guarantee about the originator of a message.

Edit: okay I now understand that you're just trying to tag the mail message somehow so that you can recognise which server generated it (in a non-secure way). Here's how using .NET's MailMessage:

System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage();
msg.Headers.Add("X-Is-Development", "true");
link|improve this answer
smtp server are different. can you give any example how to set headers in c# – developer Mar 16 '10 at 10:40
Received headers prove nothing? Need SSL/PGP or other pre-arranged token – TFD Mar 16 '10 at 19:35
feedback

Email Headers has more details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.