private void btnEnviarEmailEvento_Click(object sender, EventArgs e) { try { var arquivoXmlEvento = Helpers.OpenFile("Arquivo Xml Evento (*.xml)|*.xml|Todos os Arquivos (*.*)|*.*"); if (string.IsNullOrEmpty(arquivoXmlEvento)) { return; } var arquivoXml = Helpers.OpenFile("Arquivo Xml NFe (*.xml)|*.xml|Todos os Arquivos (*.*)|*.*"); if (string.IsNullOrEmpty(arquivoXml)) { return; } var destinatario = ""; if (InputBox.Show("Envio email", "Digite o email do destinatario", ref destinatario) != DialogResult.OK) { return; } if (string.IsNullOrEmpty(destinatario)) { return; } ACBrNFe.EnviarEmailEvento(destinatario, arquivoXmlEvento, arquivoXml, true, txtAssunto.Text, txtMensagem.Text); } catch (Exception exception) { MessageBox.Show(exception.Message, @"Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); } }