MailBee.NET Objects 4.0

HeaderCollection.RemoveRouteHeaders Method 

Removes all route headers from the collection.

public void RemoveRouteHeaders();

Remarks

Removes all Header objects having Return-Path or Received names.

Example

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()

See Also

HeaderCollection Class | MailBee.Mime Namespace | MailMessage | Header