MessageParserConfigAHRefSuffix Property |
Namespace: MailBee.Mime
This and AHRefCleanup properties are usually used together.
Note |
---|
MessageParserConfig object cannot be used on its own. To access its members, the developer should use MailMessage.Parser property. |
// 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). MailMessage msg = new MailMessage(); msg.LoadMessage(@"C:\Docs\TestMail.eml"); msg.Parser.AHRefCleanup = AHRefTagAttributes.Target; msg.Parser.AHRefSuffix = "target=_blank"; msg.Parser.Apply();