mail-mutation-sendtest.gql 203 B

123456789101112
  1. mutation ($recipientEmail: String!) {
  2. mail {
  3. sendTest(recipientEmail: $recipientEmail) {
  4. responseResult {
  5. succeeded
  6. errorCode
  7. slug
  8. message
  9. }
  10. }
  11. }
  12. }