HeaderCollectionRemoveRouteHeaders Method
Removes all route headers from the collection.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public void RemoveRouteHeaders()
Remarks
Removes all Header objects having Return-Path or Received names.
Examples
The following example demonstrates how the all route headers can be removed:
// 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();
See Also