diff --git a/pages/contact.vue b/pages/contact.vue index 67318f21..05440fb9 100644 --- a/pages/contact.vue +++ b/pages/contact.vue @@ -1,20 +1,106 @@ + + \ No newline at end of file diff --git a/woonuxt_base/queries/sendEmail.gql b/woonuxt_base/queries/sendEmail.gql new file mode 100644 index 00000000..5e4e5287 --- /dev/null +++ b/woonuxt_base/queries/sendEmail.gql @@ -0,0 +1,15 @@ +mutation SendEmail($to: String!, $from: String!, $subject: String!, $body: String!, $clientMutationId: String!) { + sendEmail( + input: { + to: $to + from: $from + subject: $subject + body: $body + clientMutationId: $clientMutationId + } + ) { + origin + sent + message + } +} \ No newline at end of file