Removes all route headers from the collection.
Removes all Header objects having Return-Path or Received names.
The following example demonstrates how the all route headers can be removed:
[C#] // To use the code below, import MailBee namespaces at the top of your code. using MailBee; using MailBee.Mime; // The actual code (put it into a method of your class) // Load the message from file. MailMessage msg = new MailMessage(); msg.LoadMessage(@"C:\Docs\TestMail.eml"); // Remove all route headers. msg.Headers.RemoveRouteHeaders();
[Visual Basic] ' To use the code below, import MailBee namespaces at the top of your code. Imports MailBee Imports MailBee.Mime ' The actual code (put it into a method of your class) ' Load the message from file. Dim msg As New MailMessage msg.LoadMessage("C:\Docs\TestMail.eml") ' Remove all route headers. msg.Headers.RemoveRouteHeaders()
HeaderCollection Class | MailBee.Mime Namespace | MailMessage | Header