EmailAddressCollectionClear Method
Clears the entire collection of the e-mail addresses.

Namespace: MailBee.Mime
Assembly: MailBee.NET.45 (in MailBee.NET.45.dll) Version: 10.0.45.502
Syntax
public void Clear()
Remarks
Removes all EmailAddress objects from the collection.
Examples
This sample loads the message from .EML file and removes all the message recipients:
// 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 recipients from the message.
msg.To.Clear();
msg.Cc.Clear();
msg.Bcc.Clear();
See Also