public void SendTestEmail()
        {
            updateProviderInfo();

            Forms.Form_TestSMTPEmail tse = new Form_TestSMTPEmail();
            if (tse.ShowDialog() == DialogResult.OK)
            {
                this.Cursor = Cursors.WaitCursor;
                try
                {
                    m_provider.SendMessage(tse.Recepient, "SQLsecure Notification Test", "It worked!");
                }
                catch (Exception e)
                {
                    Utility.MsgBox.ShowError("Failed to send test email. ", e);
                }
                finally
                {
                    this.Cursor = Cursors.Default;
                }
            }
        }