如果我在发送时在电子邮件中创建自定义标头,当有人回复电子邮件时,所有电子邮件客户端都会返回自定义标头吗?
前任)
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 );
谢谢