Ejemplo n.º 1
0
 public void PostEmail([FromBody] string email)
 {
     try
     {
         //Send the confirmation
         mail.SendConfirmation(email);
     }
     catch (Exception ex)
     {
         //log the error
         throw ex;
     }
 }