public void Enviar()
        {
            if (!string.IsNullOrEmpty(this.host))
            {
                MailSMTP ms = new MailSMTP(this.user, this.pass, this.host, this.port);

                Mail xx = new Mail(ms, this.asunto, this.body, true, this.para);

                xx.EnviarThread(true);
            }
        }