BitServer.SMTPconnection.send C# (CSharp) Method

send() private method

private send ( string Message ) : void
Message string
return void
        private void send(string Message)
        {
            if (c != null)
            {
                try
                {
                    sendraw(Encoding.ASCII.GetBytes(Message + "\r\n"));
                }
                catch
                {
                    c.Close();
                    if (SMTPdropped != null)
                    {
                        SMTPdropped();
                    }
                }
            }
        }