If I create a custom header in my email when sending, will all email clients return the custom header when someone replies to the email?
Ex)
MailMessage mail = new MailMessage();
mail.To = "me@mycompany.com";
mail.From = "you@yourcompany.com";
mail.Subject = "this is a test email.";
mail.Body = "this is my test email body.";
mail.Headers.Add( "X-Company", "My Company" ); <---- This is my custom header.
SmtpMail.SmtpServer = "localhost"; //your real server goes here
SmtpMail.Send( mail );
Thanks