Click here to Skip to main content
15,891,529 members
Articles / Programming Languages / C#

Advanced MIME Parser/Creator/Editor

Rate me:
Please Sign up or sign in to vote.
4.91/5 (66 votes)
5 Oct 2005 1M   7.7K   116  
An advanced MIME parser/creator/editor application.
using System;

namespace LumiSoft.Net.Mime.Parser
{
	/// <summary>
	/// Electronic address.
	/// </summary>
	[Obsolete("Use Mailbox class instead, this class will be removed.")]
	public class eAddress
	{
		private string m_eAddress = "";

		/// <summary>
		/// Default constructor.
		/// </summary>
		/// <param name="address">Electronic address. Eg. "Ivar Lumi" ivar@lumisoft.ee.</param>
		public eAddress(string address)
		{
			m_eAddress = address.Trim();
		}


		#region Properties Implementation

		/// <summary>
		/// Gets email address. Eg. ivar@lumisoft.ee .
		/// </summary>
		public string Email
		{
			get{ 
				// If email address between <>.  "Ivar Lumi" <ivar@lumisoft.ee>
				if(m_eAddress.EndsWith(">") && m_eAddress.IndexOf("<") > -1){
					return m_eAddress.Substring(m_eAddress.LastIndexOf("<") + 1,m_eAddress.Length - m_eAddress.LastIndexOf("<") - 2);
				}
				// If email address without <>. "Ivar Lumi" <ivar@lumisoft.ee>;ivar@lumisoft.ee
				else if(m_eAddress.LastIndexOf(" ") > -1){
					return m_eAddress.Substring(m_eAddress.LastIndexOf(" ") + 1).Replace("<","").Replace(">","").Trim();
				}
				return m_eAddress;
			}
		}

		/// <summary>
		/// Gets mailbox. Eg. mailbox=ivar from ivar@lumisoft.ee .
		/// </summary>
		public string Mailbox
		{
			get{ 
				if(this.Email.IndexOf("@") > -1){
					return this.Email.Substring(0,this.Email.IndexOf("@"));
				}
				return this.Email;
			}
		}

		/// <summary>
		/// Gets domain. Eg. domain=lumisoft.ee from ivar@lumisoft.ee .
		/// </summary>
		public string Domain
		{
			get{ 
				if(this.Email.IndexOf("@") > -1){
					return this.Email.Substring(this.Email.IndexOf("@") + 1);
				}
				return "";
			}
		}

		/// <summary>
		/// Gets name.  Eg. name='Ivar Lumi' from "Ivar Lumi" ivar@lumisoft.ee .
		/// </summary>
		public string Name
		{
			get{ 
				// If electronic address name between "". "Ivar Lumi" ivar@lumisoft.ee
				int startIndex = m_eAddress.IndexOf("\"");
				if(startIndex > -1 && m_eAddress.LastIndexOf("\"") > startIndex){
					return m_eAddress.Substring(startIndex + 1,m_eAddress.LastIndexOf("\"") - startIndex - 1);
				}
				// If Ivar <ivar@lumisoft.ee> or Ivar<ivar@lumisoft.ee>
				else if(m_eAddress.EndsWith(">") && m_eAddress.IndexOf("<") > -1){
					return m_eAddress.Substring(0,m_eAddress.IndexOf("<"));
				}
				else{
					return "";
				}
			}
		}

		/// <summary>
		/// Gets full electronic address. Eg. "Ivar Lumi" ivar@lumisoft.ee .
		/// </summary>
		public string ElectronicAddress
		{
			get{ return m_eAddress; }
		}

		#endregion

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions