This plugin enables to send email via WPGraphQL.
Author: | Ash Hitchcock (profile at wordpress.org) |
WordPress version required: | 5.0 |
WordPress version tested: | 5.6.4 |
Plugin version: | 1.2.0 |
Added to WordPress repository: | 27-01-2021 |
Last updated: | 27-01-2021
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
Rating, %: | 0 |
Rated by: | 0 |
Plugin URI: | https://github.com/ashhitch/wp-graphql-send-m... |
Total downloads: | 2 587 |
Active installs: | 400+ |
Click to start download |
This plugin enables to send email via WPGraphQL.
Usage
`
mutation SEND_EMAIL {
sendEmail(
input: {
to: “test@test.com”
from: “test@test.com”
subject: “test email”
body: “test email”
clientMutationId: “test”
}
) {
origin
sent
message
}
}
`