If I create a custom header in my email when sending, will all email clients return a 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";
thanks
c # email email-client email-integration
user2304945
source share