testEmail

Graphql fields and variables for the testEmail mutation

Test an email by sending it to the current user

Scope required: admin:write

mutation testEmail ($subject: String!, $body: String!) {
  testEmail (subject: $subject, body: $body) {
      errors
      message
      success
  }
}

Arguments

{
  "subject": "",
  "body": ""
}
Name
Type
Description

subject

String

body

String

Response

Name
Type
Description

errors

List (String)

message

String

success

Boolean

Last updated

Was this helpful?