이메일을 보낼 때 이메일에 맞춤 헤더를 만드는 경우 누군가 이메일에 답장하면 모든 이메일 클라이언트가 맞춤 헤더를 반환합니까?전자 메일 클라이언트는 모두 전자 메일 응답에 사용자 지정 헤더를 반환합니까?
예)
MailMessage mail = new MailMessage();
mail.To = "[email protected]";
mail.From = "[email protected]";
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);
감사