Esempio n. 1
0
 async private void btnEnviar_Clicked(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(Comentario.Text))
     {
         LabelInfo.Text      = "Debes indicar algún comentario.";
         LabelInfo.IsVisible = true;
         Comentario.Focus();
         return;
     }
     // Enviar el comentario
     await App.SendEmailUserLocal($"Comentario a elGuille sobre {App.AppName} {App.AppVersion}", Comentario.Text, "*****@*****.**");
 }